Products per page showing incorrect
-
Hi
I have a issue in my shop page
`/**
* Change number of products that are displayed per page (shop page)
*/
add_filter( ‘loop_shop_per_page’, ‘new_loop_shop_per_page’, 20 );function new_loop_shop_per_page( $cols ) {
$cols = 24;
return $cols;
}
I have used this code in my function.php It is showing random number of products per page. For Ex: In first it show 15 products on second page it shows only 2 products and go on. How to fix this issue ?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Products per page showing incorrect’ is closed to new replies.