David
asked 8 years ago

When I click on the Quick View button for a product, the quick view slides in. However, when I select a Gallery image, nothing happens; it doesn’t change the large image to the one I clicked.

2 Answers
Allen
answered 8 years ago

I’ve check it and it works fine on my localhost, so please send us your site via private answer for further checking. Glad

david rummelhoff
replied 8 years ago

Alright. Please see answer below.

nobita
replied 8 years ago

hi, i need an admin account to debug on your site too. So sorry for having you lots of time , but when i said sent your site via private, i meant the access to it too. Please be gentle, Thanks

david rummelhoff
replied 8 years ago

Alright; posted below.

nobita
replied 8 years ago

@Dabid Rummelhoff : Hi,i’ve check it and realize that our theme bug with the wordpress version 4.4, at this time, the elevateZoom and Light box combination i’s not compatible with wordpress 4.4, so , to have this function again, you can try using wordpress 4.3.1 so sorry for that inconvenience, We will note this and update our theme soon. Thanks.

DominicStaff
answered 8 years ago

Hi,
Please accept my apology for the delay in getting back to you.
I have checked your site and see that it’s bug come from WP 4.4. Currently, the DW Store still not yet compatible with latest version. To resolve this issue, you can add the following code to the function.php file.


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');

I just wanted to wish you guys a happy, healthy and prosperous Holiday Season and New Year!
Enjoy the holidays!
Hope this helps !

david rummelhoff
replied 8 years ago

Thank you. I look forward to the update of DW Store.

Powered by DW Question & Answer Pro