stuart-d
7/20/2016 - 7:27 PM

This filter allows the changing of the Storefront themes WooCommerce product gallery thumbnail columns.

This filter allows the changing of the Storefront themes WooCommerce product gallery thumbnail columns.

function custom_storefront_product_thumbnail_columns() {
	return 3;
}
add_filter( 'storefront_product_thumbnail_columns', 'custom_storefront_product_thumbnail_columns' );