I have the following code:
{$product.name}
This outputs all of our products, unfortunatly they are stored in the database as 'CompanyNameProductName'.
I want to remove the string 'CompanyName' from the string $product.name
How can I do this in PHP?
Replace
{$product.name}
by
{$product.name|replace:'CompanyName':''|capitalize}
This way you can do it in your Smarty template without having to modify your PHP.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With