-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
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
Backport of MAGETWO-60351 for Magento 2.1 - Unnecessary disabled paym… #9365
Backport of MAGETWO-60351 for Magento 2.1 - Unnecessary disabled paym… #9365
Conversation
@@ -0,0 +1,73 @@ | |||
<?php | |||
/** | |||
* Copyright © 2016 Magento. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update copyright.
@@ -0,0 +1,146 @@ | |||
<?php | |||
/** | |||
* Copyright © 2016 Magento. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same problem with copyright.
@@ -0,0 +1,93 @@ | |||
<?php | |||
/** | |||
* Copyright © 2016 Magento. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same problem with copyright.
@@ -0,0 +1,158 @@ | |||
<?php | |||
/** | |||
* Copyright © 2016 Magento. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same problem with copyright.
…ent methods on checkout page magento#4868
8018ccf
to
c41743d
Compare
@omiroshnichenko: I just amended the commit with the changed copyright header, and force pushed it. Thanks for the heads up! |
[EngCom] Public Pull Requests - 2.1 - MAGETWO-67753: Fix a bug resulting in incorrect offsets with dynamic row drag-n-drop functionality #9376 - MAGETWO-67725: Backport of MAGETWO-59685 for Magento 2.1 - Checkout pages very slow #9364 - MAGETWO-67724: Backport of MAGETWO-60351 for Magento 2.1 - Unnecessary disabled payment methods #9365
@hostep thank you for your contribution to Magento 2 project |
…ent methods on checkout page #4868
Description
This is a backport of issue MAGETWO-60351 for Magento 2.1
Fixed Issues (if relevant)
Reference to commits on the develop branch: 398b915 & 79f392c & 0644f24
Discussion
Together with the backport of MAGETWO-59685, this significantly speeds up the checkout process, even up to multiple seconds. This is due to the json data structure being outputted on the checkout containing way too many elements then necessary, which makes the client side processing of this json take a very long time (sometimes up to 10 seconds). In a concrete example of one of our webshops, this reduced the json structure from 175867 lines to 4003 lines.
MAGETWO-60351 in particular fixes not outputting payment methods which your webshop isn't using.