• Resolved skafec

    (@skafec)


    Hello,

    My Search Results page is showing only 10 products when there are more products to show.

    I tried to change max number of search results on results page in plugin settings as well as in theme options (I use Avada theme) and none of it worked as it should. Results page is still showing 10 products. I tried to clear cache in plugin settings after and that didn’t help as well.

    Any ideas why Results Page doesn’t work as it should?

    Thanks in advance.

    • This topic was modified 5 years, 1 month ago by skafec.

    The page I need help with: [log in to see the link]

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

    (@mihail-barinov)

    Hello,

    Please tell me what plugin version number you are currently using?
    There was some issues with search results page but in the latest version they was fixed.

    Regards

    Thread Starter skafec

    (@skafec)

    Hello Illid,

    I updated plugin today so I am using version 1.91 which should be the latest one.

    I tried to clear cache one more time but that didn’t work as well.

    Should I Reindex table?

    Thanks in advance.

    Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Please try to add following code snippet.

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

    Is it helps you?

    Regards

    Thread Starter skafec

    (@skafec)

    Hello Illid,

    Provided code snippet didn’t work.

    Thanks in advance.

    Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    I just check your search results page and I see more than 10 results here.
    For example please visit https://1klik.com.hr/?s=ins&post_type=product&type_aws=true. There is pagination buttons at the bottom.
    If you want to display more than 10 results per page please try to go to Settings -> Reading settings page and find there ‘Blog pages show at most’ option

    Regards

    Thread Starter skafec

    (@skafec)

    Hello Illid,

    Yes I had a pagination going on from the start.
    I want to display more products per page. I tried to change “Blog pages show at most” option and it didn’t work as well…

    Thanks in advance.

    Plugin Author ILLID

    (@mihail-barinov)

    Please try one more thing

    add_filter('aws_posts_per_page','aws_posts_per_page');
    function aws_posts_per_page( $num ) {
        return 99;
    }
    Thread Starter skafec

    (@skafec)

    Hello Illid,

    Nice, this one worked!
    Thank you for your persistence and help.

    Cheers.

    • This reply was modified 5 years, 1 month ago by skafec.
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Search results page problem’ is closed to new replies.