Advertisement
fahimmurshed

WooCommerce Gallery Thumbnail Image Size

Oct 30th, 2021
2,144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
  2. return array(
  3. 'width' => 300,
  4. 'height' => 199,
  5. 'crop' => 0,
  6. );
  7. } );
  8.  
  9. add_filter( 'astra_image_resizer', '__return_false' );
  10.  
  11. add_filter( 'astra_tablet_breakpoint', function() {
  12. return 1100;
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement