magento - Product image is not showing up in poduct page where as showing list -
magento product images showing in list or grid. when click on product, product image not displaying in product page. remaining things add cart, add compare, wishlist working fine. think media.phtml not loading, please suggest me in right way.
thanks in advance.
firstly, must confirm whether media.phtml loaded. may insert dummy characters in media.phtml see whether show in frontend.
thus, if characters show, congratulations, close find problem. in situation, problems caused image attributes not loading model object. reload object following snippets:
$_product = mage::getmodel('catalog/product')->load($_product->getid());
otherwise, may confirm following things:
- is media.phtml overload other theme?
- compare default catalog.xml current one, find out media.phtml correctly loaded, including path, block type, name, as, etc.
- check permission settings xml , template files
these stuffs coming mind when reading problems. hope helps.
Comments
Post a Comment