in my file, I have this code:
{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}
I want to make it like this, but truncate it to 45:
{if $features.0.name eq "Part No."}{$features.0.value} -{/if} {$product_manufacturer.name|escape:'htmlall':'UTF-8'} - {$product.name|escape:'htmlall':'UTF-8'}
How would I concatenate all those variables to get the value I want and also truncate it to 45?