- This topic has 1 reply, 2 voices, and was last updated 5 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 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 › Search Results before Query is Submitted
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
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)
}