Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 04-15-2014 15:41:52

chrisrolling
Member
Registered: 06-11-2004
Posts: 39

Edit text on Checkout page > Payment Information > Card Type*

Hello,

I would like to edit the text on my Checkout Page under the Payment Information sub-header > Card Type* — I just need to add a snippet of text to "Select the type of credit card you wish to use."  I'm sure this is right in front of my face, but I can't find where to go.  Can anyone give me thread please?

Thanks so much, in advance!

Offline

 

#2 04-15-2014 21:20:40

dh783
Member
From: Avondale, Arizona
Registered: 04-06-2005
Posts: 6233
Website

Re: Edit text on Checkout page > Payment Information > Card Type*

look in your "Porcessing Gateways" form display code field where you should see something like

Code:

// +--
// | Create the DISPLAY fields for the form.
// +--

$olpform['fields']['DISPLAY'][] = array('type'   => 'SELECTCUSTOM',
                                        'params' => array('name'     => 'x_card_type',
                                                          'required' => 1,
                                                          'display'  => 'Card Type',
                                                          'desc'     => 'Select the type of credit card you wish to use.',
                                                          'options'  => $accepted_cards));

John

Offline

 

#3 04-16-2014 08:17:29

chrisrolling
Member
Registered: 06-11-2004
Posts: 39

Re: Edit text on Checkout page > Payment Information > Card Type*

Perfect! Thanks so much!

Offline

 

Board footer