Live Chat Software by IXXO |
Knowledgebase: Customization & Developer Info
How do I get my manufacturer logo to displayed?
Posted by Michael G.K on 30 August 2008 06:02 AM
|
|
Manufacturer logo is not getting displayed on front end of the cart. We are going to fix that issue in next version.
For now you can display it on product page.
Edit the product skin file which you are using currently.
content\skins\flat\product_style1.html
content\skins\flat\product_style2.html
content\skins\flat\product_style3.html
Look for
{if $CatalogManufacturers == "YES" && $product.manufacturer_name != ""}
Manufacturer: {$product.manufacturer_name|htmlspecialchars}
{/if}
You can modify this code to display manufacturer logo.
Following is an example for it
{if $CatalogManufacturers == "YES" && $product.manufacturer_name != ""}
Manufacturer: {foreach from=$manufacturers item=manufacturer} {if $manufacturer.manufacturer_name == $product.manufacturer_name} | |
|
Comments (0)