To increase the number of categories to be shown on the Homepage Tin Storefront Powerpack from 12 to at least 25.
To increase the number of categories to be shown on the Homepage Tin Storefront Powerpack from 12 to at least 25. See screenshot: http://screencast.com/t/cL5lXdxZ
5
votes

-
Michelle Eaton commented
You can do this with a little code snippet added to functions.php
<?php
add_filter(‘storefront_product_categories_shortcode_args’,’custom_storefront_category_per_page’ );
// Category Products
function custom_storefront_category_per_page( $args ) {
$args[‘number’] = 8;
$args[‘rows’] = 2;
$args[‘columns’] = 4;
return $args;
}