Re: Super Orders 2.0 - presekecting payment method
Customers often check "purchase order" payment method accidentally (interpreting literally I suppose). This occurs even though I have added this text: NOTICE: BE SURE TO CHECK SECURE CREDIT CARD OPTION - Purchase orders are for established commercial customers only.
On the checkout payment page, under payment methods - how do I make the Secure Credit Card option box pre-selected by default?
Thank you
Re: Super Orders 2.0 - presekecting payment method
Quote:
Originally Posted by
love2tri
On the checkout payment page, under payment methods - how do I make the Secure Credit Card option box pre-selected by default?
This works if put into tpl_checkout_payment_default.php
Code:
if(!isset($_SESSION['payment'])){
$_SESSION['payment'] = 'worldpay';
}
where worldpay is the desired payment method to be selected by default. (You'd need to work out what yours is).
Thanks
Philip.