I asked the same question and was able to do what you're trying to do by appending the following text in your Themes functions.php
// Display 24 products per page
add_filter('loop_shop_per_page', create_function('$cols', 'return 24;'));
?>
I asked the same question and was able to do what you're trying to do by appending the following text in your Themes functions.php
// Display 24 products per page
add_filter('loop_shop_per_page', create_function('$cols', 'return 24;'));
?>