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 10-04-2007 11:58:35

9000world
Member
From: Denver
Registered: 06-19-2007
Posts: 37
Website

Credit Card Field - text vs password format

How do I change the credit card and credit card verification form fields from <input type="password" ... to <input type="text"... ?

I've poked around in the Manage Checkout Form Fields section and tried editing the Formfield: Password xhtml include with no luck.

Thanks much,
Mike

Offline

 

#2 10-22-2007 14:24:08

crimsonoctopus
Member
Registered: 05-29-2007
Posts: 17

Re: Credit Card Field - text vs password format

I changed mine within the code in the Payment Information Form XHTML include. I think it's here:

Home -> ClickCart Pro -> Displays: Skins, Menus, XHTML Includes and Messages -> XHTML Includes -> Payment Information Form

Around line 220.

Offline

 

#3 10-23-2007 15:05:37

9000world
Member
From: Denver
Registered: 06-19-2007
Posts: 37
Website

Re: Credit Card Field - text vs password format

Thanks for your post.

The solution I ended up using was to change the processing gateway "Form Display Code".


Home > ClickCartPro > Commerce: Orders and Checkout > Manage Processing Gateways > Authorize.Net AIM Credit Card - Secure Server


In the Form Display Code textarea I changed PASSCUSTOM to TEXTCUSTOM in 2 spots:

WAS
...

$olpform['fields']['DISPLAY'][] = array('type'   => 'PASSCUSTOM',

$olpform['fields']['DISPLAY'][] = array('type'   => 'PASSCUSTOM',

...

NOW IT'S
...

$olpform['fields']['DISPLAY'][] = array('type'   => 'TEXTCUSTOM',

$olpform['fields']['DISPLAY'][] = array('type'   => 'TEXTCUSTOM',

...

But I'm sure that there is more than 1 way do do it.

Mike

Offline

 

Board footer