-
-
Save jcamp/9ad34c17f42e3f547f361e9527d7548b to your computer and use it in GitHub Desktop.
Wordpress woocommerce thumbnails on product pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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