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} {/if} {/foreach} {/if}
(158 vote(s))
Helpful
Not helpful

Comments (0)
Post a new comment
 
 
Full Name:
Email:
Comments:
CAPTCHA Verification 
 
Please enter the text you see in the image into the textbox below (we use this to prevent automated submissions).