when i process checkout using chrome checkout button cannot continue to paypal, but works with mozilla.
how to solve it?
checkout using chrome not working
Re: checkout using chrome not working
open catalog/template/default/content/checkut_confirm.tpl and delete:
Code: Select all
<script type="text/javascript"><!--
$("#submit").on("click", function(){
$('#submit').attr('disabled', true);
});
//--></script>
-
- Posts: 9
- Joined: Fri Feb 19, 2016 10:51 pm
Re: checkout using chrome not working
it works, thanks leoleo wrote:open catalog/template/default/content/checkut_confirm.tpl and delete:Code: Select all
<script type="text/javascript"><!-- $("#submit").on("click", function(){ $('#submit').attr('disabled', true); }); //--></script>
Re: checkout using chrome not working
To avoid to press the checkout button more than once, we suggest you to replace the original code with this one. This will hide the button if pressed and works on Chrome as well thanks to Brent.
Code: Select all
<script type="text/javascript"><!--
$("#submit").on("click", function(){
$('#submit').attr("hidden","hidden");
});
//--></script>
-
- Posts: 9
- Joined: Fri Feb 19, 2016 10:51 pm
Re: checkout using chrome not working
thank you very muchleo wrote:To avoid to press the checkout button more than once, we suggest you to replace the original code with this one. This will hide the button if pressed and works on Chrome as well thanks to Brent.Code: Select all
<script type="text/javascript"><!-- $("#submit").on("click", function(){ $('#submit').attr("hidden","hidden"); }); //--></script>
