Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Search Results before Query is Submitted

Viewing 2 posts - 1 through 2 (of 2 total)
  • Nimmo
    #273756

    Hi Trevor,

    Hope you’re well.

    Is it possible to change or remove the search results when no query has been submitted?
    https://kochgallery.com/search-filter-test-page/

    We’d still like to keep the alphabetical order for search results in general, so we can’t use that avenue, but my client is wondering if we are either able to show something else on page load or remove those items altogether (until a search query is submitted).

    Thanks,
    Joanna

    Trevor Moderator
    #273770

    Yes, you would need to edit the results.php file, as indicated here (changing the ID shown to match that of your form):

    global $searchandfilter;
    $sf_current_query = $searchandfilter->get(6745)->current_query();
    if ((!$sf_current_query->is_filtered())&&($sf_current_query->get_search_term()=="")) {
      echo '<div>Nothing to see here folks!</div>'; 
    } else {
      // the current resuts.php code here (ALL the code from the if ( $query->have_posts() ) line and onwards)
    }
Viewing 2 posts - 1 through 2 (of 2 total)

The forum ‘Search & Filter Pro’ is closed to new topics and replies.