when i process checkout using chrome checkout button cannot continue to paypal, but works with mozilla.
how to solve it?
<script type="text/javascript"><!--
$("#submit").on("click", function(){
$('#submit').attr('disabled', true);
});
//--></script>
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>
<script type="text/javascript"><!--
$("#submit").on("click", function(){
$('#submit').attr("hidden","hidden");
});
//--></script>
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>
Users browsing this forum: No registered users and 1 guest