How can the product title display more than 42 characters?

i would like the product title to display the whole title and not cut off. i can’t find a setting anywhere and i’ve read the manual and searched this forum. please see below:



Try this:



File

\customer\common_templates\product_data.tplCode Extract [Line 24]


{capture name="name_`$obj_id`"}
{if $show_name}
{$product.product|unescape}
{elseif $show_trunc_name}
{$product.product|unescape|truncate:[COLOR=Red]45[/COLOR]:"...":true}
{/if}
{/capture}
Change “45” to what length you require.

Sweet that worked! Thank you so much! :mrgreen: