Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Last active July 6, 2018 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save barbwiredmedia/50adb52e267eba821a51 to your computer and use it in GitHub Desktop.
Save barbwiredmedia/50adb52e267eba821a51 to your computer and use it in GitHub Desktop.
Wordpress woocommerce thumbnails on product pages
// Woo commerce thumbnails beneath main product
add_filter ( 'woocommerce_product_thumbnails_columns', 'xx_thumb_cols' );
function xx_thumb_cols() {
return 4; // .last class applied to every 4th thumbnail
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment