Home › Forums › WoodMart support forum › Search results infinite loading › Reply To: Search results infinite loading
February 2, 2018 at 10:08 am
#36965
Artem Temos
Keymaster
Hi,
Try to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_shop_products_per_page() {
$per_page = 12;
$number = apply_filters('woodmart_shop_per_page', woodmart_get_products_per_page() );
if( is_numeric( $number ) ) {
$per_page = $number;
}
if ( is_search() ) {
$per_page = 36;
}
return $per_page;
}
add_filter( 'loop_shop_per_page', 'woodmart_shop_products_per_page', 20 );