You are here:  » Removing brand:, category: and merchant: from WP titles


Removing brand:, category: and merchant: from WP titles

Submitted by skruff on Fri, 2011-10-28 12:48 in

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

Submitted by support on Fri, 2011-10-28 13:08

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

Submitted by skruff on Fri, 2011-10-28 13:13

Fabulous, thank you.