Forums Forums Search & Filter Pro Page title says blog

Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Trevor
    #47016

    What Display Results method are you using?

    Anonymous
    #47021

    I have it set to display as an archive. It is using search.php.

    Thanks!

    Trevor
    #47085

    Can I ask what theme you are using?

    Anonymous
    #47099

    We are using Pivot theme.

    Thanks

    Trevor
    #47101

    OK, the first attempt to fix involves adding code to the theme’s functions.php file. It would be best if you had a child theme, as this is a safer method.

    The code you can try is this:

    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;
      }
    }

    Change the id number for the one for your form.

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