chaduk
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: Cloud Zoom product images not changing over since upgrade to WordPress 4.4For anyone having the same issue, adding this code to your themes functions.php fixes it:
add_filter('wp_get_attachment_image_attributes', function($attr) { if (isset($attr['sizes'])) unset($attr['sizes']); if (isset($attr['srcset'])) unset($attr['srcset']); return $attr; }, PHP_INT_MAX); add_filter('wp_calculate_image_sizes', '__return_false', PHP_INT_MAX); add_filter('wp_calculate_image_srcset', '__return_false', PHP_INT_MAX); remove_filter('the_content', 'wp_make_content_images_responsive');That is until they release an update to cloud zoom to accommodate the WordPress 4.4 changes.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce v.2.4.12 – Variation Image Still Not FixedYes I use WP-Rocket also but not a CDN. I’ve de-activated WP-Rocket and still had the same problem. The zoom still works when each thumbnail is clicked, however its the main default image that doesn’t switch over. So you basically get the zoom of each thumbnail but the same default image that never changes..
Forum: Plugins
In reply to: [WooCommerce] Woocommerce v.2.4.12 – Variation Image Still Not FixedSo how do we correct this?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce v.2.4.12 – Variation Image Still Not FixedI’m having the same issue since updating also, worked perfectly fine before. Difference is I’m using Woocommerce cloud zoom, the default image doesnt change over when the thumbnails are clicked on. What has changed Mike?
Viewing 4 replies - 1 through 4 (of 4 total)