Skip to content

Instantly share code, notes, and snippets.

@temazinkin
Forked from jameskoster/functions.php
Created March 21, 2016 21:54
Show Gist options
  • Save temazinkin/a56a28e8b8dfc5dc70cd to your computer and use it in GitHub Desktop.
Save temazinkin/a56a28e8b8dfc5dc70cd to your computer and use it in GitHub Desktop.
WooCommerce - Change number of products per row
// 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
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment