Increase the number of products displayed in WooCommerce
<?php /* Display 250 products per page. Goes in functions.php */ add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 250;' ), 20 );