Hi,
It depends on the woccommerce function to how many products will show on shop page.
By default the theme shows 10 products per page but if you want to change the number of WooCommerce products displayed per page and fill up the full area you can show 12 products per page.
Add the following code to your functions.php file in your theme.
// Display 12 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 12;' ), 20 );
Hope it helps and let me know if you require any further assistance.