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' );