Hello @einsstark ,
Unfortunately, there is no direct option. You need to add some custom code to set the pagination as infinite.
Here are some articles that may help you –
You can customize our query args as per your need. Here is a solution to your query –
function filter_post_query( $query_args, $attributes) {
// Modify $query_args values.
// Ex.
$query_args['posts_per_page'] = -1;
return $query_args;
}
add_filter( 'uagb_post_query_args_masonry', 'filter_post_query', 10, 2 );
For more info please refer to this – https://developer.ww.wp.xz.cn/reference/classes/wp_query/#pagination-parameters
Also, you can refer to this article for the filters and action – https://ultimategutenberg.com/docs/filters-actions-for-post/
I hope that helps. Let me know how it goes.
Regards,
Sweta
It is a complex process for me. However, please include an infinite scrolling option in post grids (with the ‘Load More’ button) in coming updates? It will be an awesome feature for everyone using the plugin.
Please pass the request to the plugin developer team. Thanks 🙂
-
This reply was modified 5 years, 1 month ago by
einsstark.
Hello @einsstark ,
I will surely convey your feedback to our concerned developers. We are always keen to listen to our customers and to receive their feedback. This is the best way to improve our products and services and maintain our client’s satisfaction. 🙂
I’ll put forward your thought about this to our team and if feasible we will try to improve the scenario in our future updates.
If you have any further queries, please don’t hesitate to contact us.
Regards,
Sweta
Hello @einsstark ,
I have already taken this up as a suggestion and added it to our to-do list so that our developers can consider it in one of our future updates.
I am making the query resolved for now.
You can always get in touch with us in case you wish to follow up or drop in any other suggestion.
Thank you!