Forums Forums Search & Filter Pro Change titel of result page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Anonymous
    #28244

    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

    Ross Moderator
    #28282

    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

Viewing 2 posts - 1 through 2 (of 2 total)