• Resolved jbslettebak

    (@jbslettebak)


    Hello,

    I am trying to make it so that 12 products appear on my search results page. I changed the “max number of results” to 12 in the settings area, but there’s still only 10 products being displayed. I’ve tried clearing cache and re-indexing table, but nothing has worked. Any ideas?

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

    (@mihail-barinov)

    Hello,

    Please try to use following code snippet

    add_filter( 'aws_posts_per_page', 'my_aws_posts_per_page' );
    function my_aws_posts_per_page( $num ) {
        return 12;
    }

    Regards

    Thread Starter jbslettebak

    (@jbslettebak)

    That worked perfectly. Thanks very much for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing “max number of results” setting does nothing’ is closed to new replies.