Hi David
Building site everything OK just need to chenge the title on page from shopping to category or brend page, example page {link saved}
regards
Brent
Hello Brent,
Sure - if you edit the plugin file pto.php and look for the following code at line 638:
$title = htmlentities($pto_q,ENT_QUOTES,get_option("blog_charset"));
...and REPLACE with:
$parts = explode(":",$pto_q); if (isset($parts[1])) { $title = htmlentities($parts[1],ENT_QUOTES,get_option("blog_charset")); $title_override = TRUE; } else { $title = htmlentities($pto_q,ENT_QUOTES,get_option("blog_charset")); }
Cheers, David. -- PriceTapestry.com
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hello Brent,
Sure - if you edit the plugin file pto.php and look for the following code at line 638:
$title = htmlentities($pto_q,ENT_QUOTES,get_option("blog_charset"));
...and REPLACE with:
$parts = explode(":",$pto_q);
if (isset($parts[1]))
{
$title = htmlentities($parts[1],ENT_QUOTES,get_option("blog_charset"));
$title_override = TRUE;
}
else
{
$title = htmlentities($pto_q,ENT_QUOTES,get_option("blog_charset"));
}
Cheers,
David.
--
PriceTapestry.com