add_filter( 'storefront_product_categories_args', 'customize_home_product_categories' );
function customize_home_product_categories( $args ) {
$args['limit'] = 4;
$args['columns'] = 4;
return $args;
}
i added this to my child theme but it dose nothing