Viewing 2 replies - 1 through 2 (of 2 total)
  • Towhid

    (@cryptex_vinci)

    Hi

    Create a child theme and Insert below code to in functions.php

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

    Thanks

    Thread Starter Marcelo Cappelletti

    (@rcr2015)

    THANKS

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Categories on the main page’ is closed to new replies.