Skip to content

Instantly share code, notes, and snippets.

@wpbean
Created May 30, 2019 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpbean/65ada51b5e6f11acb3c716a416ebffaf to your computer and use it in GitHub Desktop.
Save wpbean/65ada51b5e6f11acb3c716a416ebffaf to your computer and use it in GitHub Desktop.
WPB WooCommerce Product Slider (Free version) image size change
<?php
/**
* Add this code on your theme functions.php file
*/
add_filter( 'wpb_wps_product_archive_thumbnail_size', 'wpb_wps_product_archive_thumbnail_size_update' );
function wpb_wps_product_archive_thumbnail_size_update( $size ){
$size = 'large'; // your image size
return $size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment