-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02b25bd
commit 5e40499
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
var config = {config: {mixins: { | ||
/** | ||
* 2019-09-30 | ||
* Without this mixin, even the standard Magento 2.3.2 checkout | ||
* does not show my payment methods on a first page load with an empty browser cache. | ||
* Previously, I thought that the problem is only reproducible with third-party checkout modules. | ||
* See my previous evidences of the issue: | ||
* 1) «How to fix the bug of Aheadworks OneStepCheckout not showing a payment module | ||
* on the frontend checkout screen?» https://mage2.pro/t/5616 | ||
* 2) «Mageplaza One Step Checkout does not show Mage2.PRO payment methods on the frontend checkout screen»: | ||
* https://github.com/mage2pro/core/issues/78 | ||
* 3) «Mageplaza One Step Checkout does not show the Stripe module on the frontend checkout screen»: | ||
* https://github.com/mage2pro/stripe/issues/65 | ||
* 4) «Make the Vantiv payment module compatible with a custom checkout module»: | ||
* https://github.com/mage2pro/vantiv/issues/3 | ||
* 5) «Mageplaza One Step Checkout does not show the Dragonpay payment option to anonymous visitors | ||
* on the frontend checkout screen's initial load»: | ||
* https://github.com/mage2pro/dragonpay/issues/5 | ||
*/ | ||
'Magento_Checkout/js/view/payment/list': {'Dfe_IPay88/payment-list': true} | ||
}}}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* 2019-09-30 | ||
* Without this mixin, even the standard Magento 2.3.2 checkout | ||
* does not show my payment methods on a first page load with an empty browser cache. | ||
* Previously, I thought that the problem is only reproducible with third-party checkout modules. | ||
* See my previous evidences of the issue: | ||
* 1) «How to fix the bug of Aheadworks OneStepCheckout not showing a payment module | ||
* on the frontend checkout screen?» https://mage2.pro/t/5616 | ||
* 2) «Mageplaza One Step Checkout does not show Mage2.PRO payment methods on the frontend checkout screen»: | ||
* https://github.com/mage2pro/core/issues/78 | ||
* 3) «Mageplaza One Step Checkout does not show the Stripe module on the frontend checkout screen»: | ||
* https://github.com/mage2pro/stripe/issues/65 | ||
* 4) «Make the Vantiv payment module compatible with a custom checkout module»: | ||
* https://github.com/mage2pro/vantiv/issues/3 | ||
* 5) «Mageplaza One Step Checkout does not show the Dragonpay payment option to anonymous visitors | ||
* on the frontend checkout screen's initial load»: | ||
* https://github.com/mage2pro/dragonpay/issues/5 | ||
*/ | ||
define(['Dfe_IPay88/loader'], function() {return function(sb) {return sb;};}); |