Last active
September 6, 2017 07:49
-
-
Save cryptexvinci/ec02cb9a8d4ad1b3d0707aabc74db693 to your computer and use it in GitHub Desktop.
Change number of products per column.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('storefront_featured_products_shortcode_args','custom_storefront_featured_product_per_row' ); | |
// Featured Featured Products column | |
function custom_storefront_featured_product_per_row( $args ) { | |
$args['columns'] = 2; | |
return $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment