Skip to content

Instantly share code, notes, and snippets.

@trueqap
Created May 27, 2020 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trueqap/a44dfc1007be4a6dd51332ceff7b0a4d to your computer and use it in GitHub Desktop.
Save trueqap/a44dfc1007be4a6dd51332ceff7b0a4d to your computer and use it in GitHub Desktop.
Divi woo 3 products per row
<?php
add_filter('loop_shop_columns', 'loop_columns', 999);
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