Not for official support
We do not provide technical support in this forum.
If you want to contact our customer support, please use our support form.
You are not logged in.
Can someone please direct me to where the page is that contains the paypal buy now button please.
Offline
Hi All
I found the button code in modules/payment/paypal.php and added this bit of code underneath it to redirect to PayPal for payment without clicking the button.
<script type="text/javascript" language="JavaScript">
var pp_win_ol_back = window.onload;
window.onload = function() {
if(pp_win_ol_back) pp_win_ol_back();
setTimeout("document.PayPalForm.submit();",2000);
};
</script>
I didn't write the code so thankyou to who ever did.
I then went into languages/english.php and added
define('STRING_ORDER_PLACED', '<h2>Thank you for your order!</h2>
We will contact you if we have any problems with your order.</br>
</br>
</br>
<h1>We are now redirecting you to PayPal for Payment...</h1></br>
</br>
If you are not redirected within 10 seconds please click the PAYPAL BUY NOW button.</br>
</br>');
In my english.php page this code is at lines 96 to 103
Regards
Offline