Forums Forums Search & Filter Pro Change titel of result page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Anonymous
    #27866

    Hi,

    I just bought the pro version of Search & Filter. Everything works great. I have only one question.

    On the result page it shows a title “blog”. Were can I change this titel?

    Kind regards,

    Max Brummelkamp

    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 3 posts - 1 through 3 (of 3 total)