Display Magento Category Image -


generally, top menu list out sub-category's name, want list out sub-category's image. can advise php code.

thank you

it can done adding additional attribute frontend categories attributes load list via config.xml:

<frontend>     <category>         <collection>             <attributes>                  <[attribute_code] />             </attributes>         </collection>     </category> </frontend> 

just replace [attribute_code] image attribute code (maybe in case image)

and able access category image via $category->getimage(), possible need override mage_catalog_block_navigation block custom html formating of menu.

when complete customization, don't forget clean cache , rebuild flat categories index (if used).


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -