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.
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
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
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