As the title says, I want to remove the prefixes brand:, category: and merchant: from WP page titles, is there an easy way to do this?
Cheers
Julie
Hi Julie,
Sure - in pto.php the title for search result pages is set by this code at line 473:
$title = htmlentities($pto_q,ENT_QUOTES,get_settings("blog_charset"));
REPLACE the above with:
$title = htmlentities($pto_q,ENT_QUOTES,get_settings("blog_charset")); $title = str_replace(array("merchant:","category:","brand:"),"",$title);
Cheers, David
Fabulous, thank you.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Julie,
Sure - in pto.php the title for search result pages is set by this code at line 473:
$title = htmlentities($pto_q,ENT_QUOTES,get_settings("blog_charset"));
REPLACE the above with:
$title = htmlentities($pto_q,ENT_QUOTES,get_settings("blog_charset"));
$title = str_replace(array("merchant:","category:","brand:"),"",$title);
Cheers,
David