- This topic has 2 replies, 2 voices, and was last updated 10 years, 6 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Change titel of result page
Hi,
Can i get a Little help with this issue? Maybe if you see the result page you know what I mean:
http://dutchmilkpower.com/?sfid=35889&_sf_s=ut%20enim
Kind regards,
Max
Hey Max
Add this to your functions.php:
add_filter('wp_title','search_form_title');
function search_form_title($title){
global $searchandfilter;
if ( $searchandfilter->active_sfid() == 35889)
{
return 'Search Results';
}
else
{
return $title;
}
}
Thanks