Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Last active June 18, 2017 19:20
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameskoster/4227162 to your computer and use it in GitHub Desktop.
Save jameskoster/4227162 to your computer and use it in GitHub Desktop.
Change number of products per row in a WooThemes WooCommerce theme
// Override theme default specification for product # per row
function loop_columns() {
return 5; // 5 products per row
}
add_filter('loop_shop_columns', 'loop_columns', 999);
@BushmansChilli
Copy link

Can not find the right file in my woo commerce. Can you give me a hint?

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