Views plugin provides a pagination feature that lets you split large amounts of content into pages with previous and next controls.
When you ask for help or report issues, make sure to tell us the pagination options of the View and the pagination controls that you have inserted.
Viewing 15 topics - 241 through 255 (of 276 total)
The issue here is that the user is saying that the duration settings for infinite scroll is not working.
Solution:
The duration settings here is actually not for the loading of the posts but rather the load animation. So decreasing the value won't make views load faster but will only affect the transition speed.
Problem: I would like to remove the spinner graphics from my View.
Solution: Use the Advanced settings in the Pagination area to turn off the spinner graphic. The original URL will remain in the page markup, but the image will not be loaded.
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 would like some advice for creating a site where site Users can create content and search for content using a custom search form.
Solution:
You need at least these elements:
1. A custom post type that represents "Summer Programs"
2. Custom fields and/or custom taxonomies that store the different criteria you want to save for each Summer Program
3. A custom search View that gives your site Users the ability to search for Summer Programs using those various criteria, and displays the results in a table.
4. A Template Layout for Summer Program posts that will be used to display the information about each Summer Program when you click an item in the table.
5. A Form that your site Users can submit to create a Summer Program post.
Problem: I would like to show the total number of results shown on the page in a View that uses Infinite Scrolling, but the wpv-items-count shortcode is not updated when more results are added by Infinite Scrolling.
Solution: The wpv-items-found shortcode isn't designed to be used with automatic pagination or Infinite Scrolling. The only way to do this is to use custom JavaScript that hooks into the pagination event. Add a unique ID to the span around the wpv-items-count shortcode:
Отображается <span id="current-list-count">[wpv-items-count]</span> боев из [wpv-found-count]
Then in the View's Search and Pagination JS editor, add the custom event code:
The issue here is that user wanted a clean url on their AJAX Pagination. Instead they are getting wpv_aux_current_post_id=22356&wpv_view_count=22393-TCPID22356&wpv_paged=2
Solution:
Actually no it's not possible, however you can disable the url completely by using the AJAX pagination and then go to Toolset-> Settings -> Frontend Content and then disable the browser history management.