fatBuzz
3/2/2018 - 3:28 PM

WooCommerce | Number of products per row

Add the below snippet to functions.php to change the number of products per row, this example changes it to 3.

// Change number or products per row to 3
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
	function loop_columns() {
		return 3; // 3 products per row
	}
}