Hi @kamimatze,
please provide as much details you can.
Hi
seems to be gone now. Maybe some plugin was in the way.
May I contact you again if the problem reoccurs?
Hi,
feel free to ask for everything you need.
If you enjoyed the plugin, please consider leaving a review for it, thanks.
Hi again,
I got the bug again and tracked down the problem.
Looks like the Theme I was using (ShoperaPRO) used the the same “form.variations_form” for the featured product AND the related products.
So the magnifier initialized 6 times instead of 1 and with each initialization the image data was renewed and replaced.
My solutions was to change line 22 on assets/js/frontend.js from
$(document).on(‘found_variation’, ‘form.variations_form’, function (event, variation) {
to
$(document).on(‘found_variation’, ‘div.featured form.variations_form’, function (event, variation) {
It seems to work fine.