New Zenner
- Join Date:
- Oct 2008
- Posts:
- 59
- Plugin Contributions:
- 0
WorldPay Module version 2.0 - Support thread
spinnywoman:
Hi - on the chekout screen "Step 2 of 3 - Payment Information" where the customer can select their Payment Method, how can I make an image appear to the left of the radio option 'Credit Card via WorldPay' please?
Hi Spinnywoman
This has already been answered by Philip on this thread. If you do a search you will find it. I remember seeing it there.
I have a quick question -
I want to change the text 'I'll select a card later'
This text is not in the languages folder. It is in Includes/modules/payment/worldpay.php in the code snippet below.
function _cc_map(){
$arr = explode(',', MODULE_PAYMENT_WORLDPAY_ACCEPTED_CC_LIST); $out = array(''=>'I\'ll select a card later'); foreach($arr as $val){ if(isset($this->cc_map[trim($val)]) ){ $out[trim($val)] = $this->cc_map[trim($val)]; } } return $out;
I've changed it here and it seems to change the text. I was just wondering does anyone know if this is a problem to change?