Payment method buttons sometimes work sometimes no
I need a little help, sometimes the buttons of the method payment doesn't work, I can't find what is going on, in the most of the cases they work.
magento-2.1 php javascript
New contributor
add a comment |
I need a little help, sometimes the buttons of the method payment doesn't work, I can't find what is going on, in the most of the cases they work.
magento-2.1 php javascript
New contributor
Hi, Welcome to Magento Stack. Can you please share more information like which magento version you are using? and In which scenario its not working. Thanks
– Abhishek Panchal
yesterday
Hi i´m using magento 2.1, i select all the products and add to the cart, when the process is in the methood payment i have 4 buttons with the payment options, but one of the buttons sometimes work and sometimes not, in the most of cases work. thanks for the help
– Alejandro Duque
yesterday
add a comment |
I need a little help, sometimes the buttons of the method payment doesn't work, I can't find what is going on, in the most of the cases they work.
magento-2.1 php javascript
New contributor
I need a little help, sometimes the buttons of the method payment doesn't work, I can't find what is going on, in the most of the cases they work.
magento-2.1 php javascript
magento-2.1 php javascript
New contributor
New contributor
edited yesterday
Abhishek Panchal
3,4122829
3,4122829
New contributor
asked yesterday
Alejandro Duque
1
1
New contributor
New contributor
Hi, Welcome to Magento Stack. Can you please share more information like which magento version you are using? and In which scenario its not working. Thanks
– Abhishek Panchal
yesterday
Hi i´m using magento 2.1, i select all the products and add to the cart, when the process is in the methood payment i have 4 buttons with the payment options, but one of the buttons sometimes work and sometimes not, in the most of cases work. thanks for the help
– Alejandro Duque
yesterday
add a comment |
Hi, Welcome to Magento Stack. Can you please share more information like which magento version you are using? and In which scenario its not working. Thanks
– Abhishek Panchal
yesterday
Hi i´m using magento 2.1, i select all the products and add to the cart, when the process is in the methood payment i have 4 buttons with the payment options, but one of the buttons sometimes work and sometimes not, in the most of cases work. thanks for the help
– Alejandro Duque
yesterday
Hi, Welcome to Magento Stack. Can you please share more information like which magento version you are using? and In which scenario its not working. Thanks
– Abhishek Panchal
yesterday
Hi, Welcome to Magento Stack. Can you please share more information like which magento version you are using? and In which scenario its not working. Thanks
– Abhishek Panchal
yesterday
Hi i´m using magento 2.1, i select all the products and add to the cart, when the process is in the methood payment i have 4 buttons with the payment options, but one of the buttons sometimes work and sometimes not, in the most of cases work. thanks for the help
– Alejandro Duque
yesterday
Hi i´m using magento 2.1, i select all the products and add to the cart, when the process is in the methood payment i have 4 buttons with the payment options, but one of the buttons sometimes work and sometimes not, in the most of cases work. thanks for the help
– Alejandro Duque
yesterday
add a comment |
1 Answer
1
active
oldest
votes
When I find that elements on Magento 2 don't work, that's usually an issue with JavaScript. It may not be loading properly, or at all.
What I usually do is login via SSH then run these commands:
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy
If that doesn't work, flush your browser cache or use a different one. It's also possible that large processing delays in Magento itself cause the JS not to completely load so checking for any bottlenecks is another step to take.
If you're using a CDN for your site, flush that as well.
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Alejandro Duque is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f256798%2fpayment-method-buttons-sometimes-work-sometimes-no%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
When I find that elements on Magento 2 don't work, that's usually an issue with JavaScript. It may not be loading properly, or at all.
What I usually do is login via SSH then run these commands:
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy
If that doesn't work, flush your browser cache or use a different one. It's also possible that large processing delays in Magento itself cause the JS not to completely load so checking for any bottlenecks is another step to take.
If you're using a CDN for your site, flush that as well.
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
add a comment |
When I find that elements on Magento 2 don't work, that's usually an issue with JavaScript. It may not be loading properly, or at all.
What I usually do is login via SSH then run these commands:
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy
If that doesn't work, flush your browser cache or use a different one. It's also possible that large processing delays in Magento itself cause the JS not to completely load so checking for any bottlenecks is another step to take.
If you're using a CDN for your site, flush that as well.
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
add a comment |
When I find that elements on Magento 2 don't work, that's usually an issue with JavaScript. It may not be loading properly, or at all.
What I usually do is login via SSH then run these commands:
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy
If that doesn't work, flush your browser cache or use a different one. It's also possible that large processing delays in Magento itself cause the JS not to completely load so checking for any bottlenecks is another step to take.
If you're using a CDN for your site, flush that as well.
When I find that elements on Magento 2 don't work, that's usually an issue with JavaScript. It may not be loading properly, or at all.
What I usually do is login via SSH then run these commands:
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy
If that doesn't work, flush your browser cache or use a different one. It's also possible that large processing delays in Magento itself cause the JS not to completely load so checking for any bottlenecks is another step to take.
If you're using a CDN for your site, flush that as well.
answered yesterday
Marisa
679
679
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
add a comment |
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
thanks for answer Marisa, i´m going to try out your suggestions.
– Alejandro Duque
yesterday
add a comment |
Alejandro Duque is a new contributor. Be nice, and check out our Code of Conduct.
Alejandro Duque is a new contributor. Be nice, and check out our Code of Conduct.
Alejandro Duque is a new contributor. Be nice, and check out our Code of Conduct.
Alejandro Duque is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f256798%2fpayment-method-buttons-sometimes-work-sometimes-no%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Hi, Welcome to Magento Stack. Can you please share more information like which magento version you are using? and In which scenario its not working. Thanks
– Abhishek Panchal
yesterday
Hi i´m using magento 2.1, i select all the products and add to the cart, when the process is in the methood payment i have 4 buttons with the payment options, but one of the buttons sometimes work and sometimes not, in the most of cases work. thanks for the help
– Alejandro Duque
yesterday