For our customization want to increase/change product per page limit for woocommerce product loop then place the following snippet in functions.php within your theme folder!. Add your custom limit instead of 30.

add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 30;' ), 20 );

Have any doubt, then comment here!

Leave a Reply

Your email address will not be published. Required fields are marked *