Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save woogists/11472c1f1b4982a83a4f7987d73575ed to your computer and use it in GitHub Desktop.
Save woogists/11472c1f1b4982a83a4f7987d73575ed to your computer and use it in GitHub Desktop.
[Theming Snippets][Change number of products per row for non Woo-developed themes]
/**
* Change number or products per row to 3
*/
add_filter('loop_shop_columns', 'loop_columns', 999);
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}
@woogists
Copy link
Author

Updated, thanks!

@aniaq
Copy link

aniaq commented Mar 10, 2020

Thanks for snippet, under which license is it under - GPLv3 like WooCommerce?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment