Hello,
I previously used custom code to control this (I want to display all products on the same page), but the WC update to 3.3.1 (I believe) cause it to stop working. It was essentially this code:
—–
add_filter( ‘loop_shop_per_page’, ‘new_loop_shop_per_page’, 20 );
function new_loop_shop_per_page( $cols ) {
// $cols contains the current number of products per page based on the value stored on Options -> Reading
// Return the number of products you wanna show per page.
$cols = 100;
return $cols;
}
—–
In searching for a solution, I found your plugin. I love its simplicity, but it is unfortunately not working for me either. You can see this on the product listing on my test site: https://test.virtualstrides.com/product-category/available-medals/
(to see this site, use guest/vstrides)
From reading through this thread, I am guessing this means there is a conflict somewhere. Are you able to help me identify where that might be coming from? Please keep in mind my site uses a LOT of plugins, including many custom written ones that are essential for the site to function. I guess I am hoping you see some obvious error that would point me in the right direction.
Thanks,
Mark
-
This reply was modified 7 years ago by
Rogue23.