If you want to display 25 product per page you should add this code to your functions.php. You can also alter that number to your preference.
// Display 25 products per page. Goes in functions.php add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 25;' ), 20 );