How do you disable the “View all results” link, that goes to a new page, in the Search element result pop up? The search results should show in the pop up only.
Also, alternatively, how do you style the View all results landing page?
Hi,
Thank you for the inquiry.
You can use this css code to hide the “view all results” button from search results container.
a.av_ajax_search_entry.av_ajax_search_entry_view_all {
display: none !important;
}
And if you want to adjust the layout of the search results page, look for the search.php and the includes > loop-search.php files within the theme directory.
Best regards,
Ismael
Thank you!