Below is the snippet causing the issue. Can you please help fix it.
add_filter( ‘woocommerce_get_image_size_gallery_thumbnail’, function( $size ) {
return array(
‘width’ => 111,
‘height’ => 111,
‘crop’ => 1,
);
}
);
add_filter( ‘woocommerce_product_thumbnails_columns’, create_function( ”, ‘return 5;’ ) );