Page 1 of 1

checkout using chrome not working

Posted: Mon Feb 29, 2016 4:13 am
by heartbreak18
when i process checkout using chrome checkout button cannot continue to paypal, but works with mozilla.

how to solve it?

Re: checkout using chrome not working

Posted: Mon Feb 29, 2016 8:47 am
by leo
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

Posted: Tue Mar 01, 2016 4:04 am
by heartbreak18
leo 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>
it works, thanks leo

Re: checkout using chrome not working

Posted: Tue Mar 01, 2016 8:22 am
by leo
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>

Re: checkout using chrome not working

Posted: Sun Mar 13, 2016 11:25 pm
by heartbreak18
leo 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>
thank you very much :)