To change number of products displayed per page in woocommerce, in your active theme functions.php
Put this in theme's functions.php
// Display 16 products per page.add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 16;' ), 20 );
No comments:
Post a Comment