James Flacks
James Flacks
I think the issue is caused by this https://github.com/checkout/checkout-magento2-plugin/commit/e82d4792717d859bd8e63d0e47e45f093e63d341#diff-3bf05ed19b66e6338063bab879891ccbe11ba078352dec2a9ec57ec37bff15bb You made merchantId a hidden field so it's not exposed in window.checkoutConfig.payment["checkoutcom_magento2"].checkoutcom_apple_pay.merchant_id so https://github.com/checkout/checkout-magento2-plugin/blob/master/view/frontend/web/js/view/payment/method-renderer/checkoutcom_apple_pay.js#L187-L191 ``` if (window.ApplePaySession) { var merchantIdentifier =...
@bakshivarun shouldn't https://github.com/checkout/checkout-magento2-plugin/blob/master/view/frontend/web/js/view/payment/method-renderer/checkoutcom_apple_pay.js#L93 be **this**.getValue not getValue - getting a reference error in JS Error logs.
I would have to refresh my memory but I believe the issue is caused by scopes more than the specifics of the config.php and the way that scope is determined...
Yeah, found the same issue. Basically, don't save the quote twice.
I flagged the same in https://github.com/checkout/checkout-magento2-plugin/pull/503 but sadly, this was missed. I'm undecided if I should continue to raise issues with this project. Off the top of my head, there...
Wow. You take payment now before the order is created. Are you unfamiliar with the concept of order validation when the quote is submitted. Why would you do this? An...
@JuliosDnd you need to fix this please. We upgraded from 4.0.0  To 5.2.0  Why on Earth would you presume to create an order before the quote is validated?...
I sorted this out with a plugin on the checkout webhook. Some validation is put on `sales_order_place_before` event so I needed to (1) create the order (2) prevent the order...
Did you get anything done with this?
It does load the window but you can't see it .pagebuilder-stage-wrapper.stage-full-screen has a z-index of 800 .modals-wrapper has a z-index of 701, maybe from a module. If I remove the...