Plugin Author
ILLID
(@mihail-barinov)
Hello,
You are talking about search results in ajax block or in search results page?
Also do you try to lift the search results limits from plugin settings page with help of ‘Max number of results’ option?
Thanks.
Thread Starter
jvj
(@jvj)
Hello, ILLID.
I am talking about search results page.
‘Maximum number of displayed search results’ option value is 10 and in ajax block displayed 10 results.
If searching product > 100, search results page displayed only 100 products, others search plugins displayed all products.
Thanks for answer.
p.s. Увидел @mihail-barinov, т.к. не особо силен в английском, мне было бы проще объяснять на русском, если есть возможность )
Plugin Author
ILLID
(@mihail-barinov)
Ok, I understand.
In this case please add code below to your theme functions.php file
add_filter( 'aws_page_results', 'aws_page_results' );
function aws_page_results( $num ) {
return 9999;
}
This must help.
p.s. Лучше на английском, т.к. англоговорящим пользователям то же может помочь данный ответ
Thread Starter
jvj
(@jvj)
add_filter( ‘aws_page_results’, ‘aws_page_results’ );
function aws_page_results( $num ) {
return 9999;
}
Yes, it helped, thank you so much.