Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Last active September 6, 2017 07:49
Show Gist options
  • Save cryptexvinci/ec02cb9a8d4ad1b3d0707aabc74db693 to your computer and use it in GitHub Desktop.
Save cryptexvinci/ec02cb9a8d4ad1b3d0707aabc74db693 to your computer and use it in GitHub Desktop.
Change number of products per column.
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