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";`