We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I installed the new plugin 3.6.8 in Oxid 4.10.4 with a azure based child theme.
When clicking on confirmation button, the shops redirects to "mydomain.com/#openModalLoading", without saving the order. Browser: firefox
The problem is located in "bestitamazonpay4oxid_order_confirm_button.tpl" in line 12. So i fixed it.
Before: window.location.href = "#openModalLoading";
window.location.href = "#openModalLoading";
After: window.location.href = window.location.href+"#openModalLoading";
window.location.href = window.location.href+"#openModalLoading";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I installed the new plugin 3.6.8 in Oxid 4.10.4 with a azure based child theme.
When clicking on confirmation button, the shops redirects to "mydomain.com/#openModalLoading", without saving the order. Browser: firefox
The problem is located in "bestitamazonpay4oxid_order_confirm_button.tpl" in line 12. So i fixed it.
Before:
window.location.href = "#openModalLoading";
After:
window.location.href = window.location.href+"#openModalLoading";
The text was updated successfully, but these errors were encountered: