Skip to content

Instantly share code, notes, and snippets.

@odil-io
Created February 23, 2017 16:11
Show Gist options
  • Save odil-io/c55ee63e577dae9329c7027d91c3190c to your computer and use it in GitHub Desktop.
Save odil-io/c55ee63e577dae9329c7027d91c3190c to your computer and use it in GitHub Desktop.
WooCommerce amount of columns in shop
// WooCommerce shop columns
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment