Woocommerce code implementation
-
Hi Everyone,
I have a problem of blurry product thumbnails following a woocommerce update.
The solution is as follows:
add_filter( ‘woocommerce_get_image_size_gallery_thumbnail’, function( $size ) {
return array(
‘width’ => 148,
‘height’ => 148,
‘crop’ => 0,
);
} );However I am unclear as to how to implement this. (I am new to WordPress)
Could somebody please guide me?
Thanks in advance,
Don
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
The topic ‘Woocommerce code implementation’ is closed to new replies.