Advertisement
doorsbulgariaweb3

Untitled

Dec 13th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. add_action( 'after_setup_theme', function() {
  2. add_theme_support( 'woocommerce', array(
  3. 'thumbnail_image_width' => 75,
  4. 'gallery_thumbnail_image_width' => 75,
  5. 'single_image_width' => 150,
  6. ));
  7. });
  8.  
  9. add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
  10. return array(
  11. 'width' => 75,
  12. 'crop' => 0,
  13. );
  14. } );
  15.  
  16. add_action( 'after_setup_theme', function() {
  17. add_theme_support( 'woocommerce', array(
  18. 'thumbnail_image_width' => 75,
  19. 'gallery_thumbnail_image_width' => 75,
  20. 'single_image_width' => 150,
  21. ));
  22. });
  23.  
  24. .single-product .site-main .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  25. flex: 0 1 calc(20% - 30px);
  26. }
  27.  
  28. .single-product .site-main .woocommerce-product-gallery .flex-control-thumbs li {
  29. list-style: none;
  30. cursor: pointer;
  31. margin: 0 0px 10px 10px;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement