Hi,
I am new to php and am tring to find the best way to replace strings located in the title and meta tags. For instance, I want to add the word "Discount" to the begining of my page title. I tried the code below, but had no luck. Similiar strings tend to work in the body, but not in the meta tags.
$html = str_replace("<title>", "<title>Discount ", $html);
Am I doing something wrong?
Thank you