REMINDER
Please be respectful of all AppDragers! Keep it really civil so that we can make the AppDrag community of builders as embracing, positive and inspiring as possible.
SOLVED Shop Loading Error
-
Hello, i dont know why, but when i click on buy now, i have loading button and .... nothing
My app id is appId=newsiteekipeo-482450
Thank you -
@oren-benitah hi, your issue is related to your cookie consent code that overrides the window.onload function.
You can fix it by adding changing your code from this:
window.onload = function() { cookieConsent(); };
To this:
window.onload = function() { window.setupCheckout && window.setupCheckout(); cookieConsent(); };
-
Worked!
Thanks wassim!!