To change the number of WooCommerce products displayed per page, add the following code to your functions.php file in your theme.
WooCommerce Products
// Display 12 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 12;' ), 20 );