
Originally Posted by
frank18
Yes, it only shows if there is a delay. Can't do a test using Direct Bank Deposit or similar. Best to do a test with PayPal as you can still cancel when you get to PP.
If it still does not work for you then open
includes/modules/pages/checkout_confirmation/jscript_main.php
and find
PHP Code:
function submitonce()
{
Change that function to read
PHP Code:
function submitonce()
{
var button = document.getElementById("btn_submit");
var img = document.getElementById("actionImg");
button.style.cursor="wait";
button.disabled = true;
button.className = 'hiddenField';
img.className = '';
setTimeout('button_timeout()', 5000);
return false;
}
Hope this helps