Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. //add this code to the functions file
  3.  
  4. add_filter ( 'woocommerce_product_thumbnails_columns', 'xx_thumb_cols' );
  5. function xx_thumb_cols() {
  6. var x = 5; // x is the number of thumbnails per row
  7. return x; // .last class applied to every x thumbnail
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement