Viewing 3 replies - 1 through 3 (of 3 total)
  • mleatherman

    You can do that by adding this code in the child theme’s functions.php file(in the end) or in any custom plugin you might be using

    add_filter('storefront_product_categories_args','my_custom_args_for_categories');
    function my_custom_args_for_categories($args){
        $args['limit'] = 6;
        return $args;
    }
    Thread Starter mleatherman

    (@mleatherman)

    Thanks so much for your prompt reply! It worked great!

    Always welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Display 6 product categories on Deli Child theme’ is closed to new replies.