Zen Cart Logo
Forums / General Questions / Credit Cards list displayed on checkout page?

Credit Cards list displayed on checkout page?

Locked

Views: 5,226

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
4 Jan 2008, 6:47 PM
#1
zruvalcaba avatar

zruvalcaba

New Zenner

Join Date:
Nov 2007
Posts:
16
Plugin Contributions:
0

Credit Cards list displayed on checkout page?

Not sure if this is supposed to be the case but isn't the user supposed to be able to select from a list of credit cards? Like in a drop down of some sort? For some reason I have a credit card label but no menu to select from next to it on the checkout page. Check the screen shot below for an example of what I mean.

To me is seems like a menu is missing here? When I click the Check Out button, JCB is the default credit card that gets used. Is this because the site is in test mode or something?

5 Jan 2008, 4:59 AM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Credit Cards list displayed on checkout page?

The credit cards are determined by their credit card number ...

You need to check the settings in the Configuration ... Credit Cards ... for the Credit Cards accepted ...

The images are just that ... images ... to indicate what you accept ...

8 Jan 2008, 8:48 PM
#3
zruvalcaba avatar

zruvalcaba

New Zenner

Join Date:
Nov 2007
Posts:
16
Plugin Contributions:
0

Re: Credit Cards list displayed on checkout page?

Ajeh:

The credit cards are determined by their credit card number ...

You need to check the settings in the Configuration ... Credit Cards ... for the Credit Cards accepted ...

The images are just that ... images ... to indicate what you accept ...

Ajeh, thanks for responding. Yes, I know the images are there just for display, that wasn't my questions. My question relates specifically to the Credit Card label right above the Credit Card Owner label. It looks like it's missing a control like a drop down list to the right there. But you're saying that it's determined by the number and that a drop down list isn't necessary?

8 Jan 2008, 9:44 PM
#4
jammin320 avatar

jammin320

Zen Follower

Join Date:
Mar 2007
Location:
Seattle, WA
Posts:
158
Plugin Contributions:
0

Re: Credit Cards list displayed on checkout page?

Exactly.

8 Feb 2008, 1:28 AM
#5
bahnstoermer avatar

bahnstoermer

New Zenner

Join Date:
Aug 2007
Posts:
94
Plugin Contributions:
0

Re: Credit Cards list displayed on checkout page?

This is confusing to me since it's recommended for security reasons by the gateways, and most every site I go to has a CC type selector. It sounds as though this just isn't implemented in ZC though?

8 Feb 2008, 5:20 AM
#6
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: Credit Cards list displayed on checkout page?

Bahn,

give it a test,
use 411111111111111 for visa
5180555555555555 for amex and look at the admin recsipts,

Its a wonder that people still use those stupid dropdowns,
thats just extra work for the cleint

23 Apr 2009, 5:49 PM
#7
george_susini avatar

george_susini

New Zenner

Join Date:
Mar 2009
Location:
Raleigh, NC
Posts:
31
Plugin Contributions:
0

Re: Credit Cards list displayed on checkout page?

Sometimes the customer wants it no matter what, so just in case I added a dummy drop down in the tpl_checkout_payment_default.php

Right after -

<div class="ccinfo"> and before the <?PHP

add

<br><label for="cctype" class="inputLabelPayment">Select Card Type:</label><select name="card type" id="cctype" ">

<option value="">Visa</option> <option value="">Master Card</option> <option value="">Discover</option>

</select><br>

Hope this helps