Hi,
i have to add extra word to product name. for example.
Original product name: "Perfume 1"
in Category: "Perfume for woman"
i need that the new product name will be: Woman: Perfume
e..g. I have to add at the beginning of the product name (Perfume) additional word that depend on category name.
i was able to do it with Product listing template,
<a class="product-name" href="{$product.link|escape:'html':'UTF-8'}" title="{$product.name|escape:'html':'UTF-8'}" itemprop="url" >
{if ($product.id_category_default) == 17}<span style="color:#FF0000;"><b>Tester: </b></span>{/if}
{$product.name|truncate:45:'...'|escape:'html':'UTF-8'}
</a>
but the name does not stays on product page and on invoice.so i understand that i have do it globally: change $product->name to $product->name + "some word"
Please help.
Thank you