• Resolved arazir

    (@arazir)


    I have a problem, the results page only show 5 results per page, and i have a infinite scrolling on the page, so if the client doesn’t know there are more products, is impossible to know.

    There is any way to increase the quantity of products per page?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Please try to add following code snippet

    add_filter('aws_posts_per_page', 'my_aws_posts_per_page');
    function my_aws_posts_per_page( $num ) {
        return 999;
    }
    add_filter('aws_page_results', 'my_aws_page_results');
    function my_aws_page_results( $num ) {
        return 999;
    }

    Regards

    Hello friend, I love your plugin! But I have the same problem, in which file should I add this code?

    Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    You need to add it somewhere outside plugins folder. For example, inside functions.php file of your theme or use some plugin for adding code snippets like.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Search Results show only 5 results per page’ is closed to new replies.