Skip to content

Instantly share code, notes, and snippets.

@jcamp
Forked from barbwiredmedia/woocommerce.php
Created July 6, 2018 17:49
Show Gist options
  • Save jcamp/9ad34c17f42e3f547f361e9527d7548b to your computer and use it in GitHub Desktop.
Save jcamp/9ad34c17f42e3f547f361e9527d7548b 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