Viewing 1 replies (of 1 total)
  • Towhid

    (@cryptex_vinci)

    Hi @severinen

    Insert this in your theme functions.php

    add_filter('storefront_product_categories_shortcode_args','custom_storefront_category_per_page' );
    
    // Category Products
    function custom_storefront_category_per_page( $args ) {
    	$args['limit'] = 10;
    	return $args;
    }

    Check out this tutorial for more storefront customization tips.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘How to show more then 3 categories on the front page ?’ is closed to new replies.