Views plugin lets you build your own custom search for any content type. These searches can be based on post content, taxonomies and custom fields.
When you ask for help or report issues, make sure to tell us settings for your custom search.
Viewing 15 topics - 2,071 through 2,085 (of 2,096 total)
The issue here is that the user wanted to recall an external JS that was imported with a script tag in the theme after the AJAX Pagination.
Solution:
Unfortunately this one seems to may not be possible as this is meant if you have the full javascript code because it would need to be re-initialized in the callback.
However it seems you are getting the script from somewhere else.
In your case I would recommend not using the AJAX pagination since we would need the script that actually add the links to the buttons .
Problem: I have a custom search View that is set up with pagination and AJAX updates. The first page of results displays correctly, but when you navigate to the second page the results never appear.
Solution: Check the DOM and see if the results are just hidden with CSS.
The issue here is that the user's custom js is not being re-activated after their parametric search. Also they were saying that their search bar is updated after an item is selected.
Solution:
If you're using a custom js on your search then you need to use the callback function to invoke that js again. To add the callback function go to the JS editor of your filter section and then click the Frontend Events button and this should bring up the callback functions.
All that is needed is to add the appropriate callback function then add your custom js within that function.
Secondly with the "Show only available options for each input" then this will update the filters once selected so that there will be no combination of filters that won't produce a result.
If the filters are updated after the search is made then it would be possible to submit a combination that would result in a "No Results Found". This essentially defeats the purpose of the "Show only available options for each input" which will always ensure that your view returns some results.