dariusake Posted February 14, 2009 Share Posted February 14, 2009 Hello,I'm trying to use the product supplier or manufacturer in the product details or even in the name.The best I can try and do right now is edit product-list.tpl and put in the supplier in the product name.I'm trying to do that with this piece of text : {if $product.new == 1}{l s='new'}{/if} {$product.name|truncate:35|escape:'htmlall':'UTF-8'} but I don't know how to use the manufacturer of the product. Tried to use $product.supplier or $product.manufacturer but it doesn't work as it probably does not exist.If someone knows how to do this please help.Also I'm to modify the format of the pdf invoice. Tried to search the forum but the only thread about that was something about US format.Thank you. Link to comment Share on other sites More sharing options...
rocky Posted February 16, 2009 Share Posted February 16, 2009 Have you tried $product.supplier_name and $product.manufacturer_name? Link to comment Share on other sites More sharing options...
dariusake Posted February 16, 2009 Author Share Posted February 16, 2009 The manufacturer works perfectly !!! {if $product.new == 1}{l s='new'}{/if} {$product.manufacturer_name|truncate:35|escape:'htmlall':'UTF-8'} {$product.name|truncate:35|escape:'htmlall':'UTF-8'} Thank you very much ! Link to comment Share on other sites More sharing options...
Recommended Posts