I do not have ammex as a payment method, but the ammex logo and instructions for entering the security code still shows up on the checkout page. I keep getting calls from my customers that are confused. How can I get this off the page?
Thanks,
David
Ammex logo shows up on checkout page
-
- Ensign (ENS)
- Posts: 4
- Joined: Mon Mar 09, 2009 9:44 pm
Re: Ammex logo shows up on checkout page
For that you need to manually comment amex static information in
Website/Checkout/PaymentForms/CreditCardPaymentForm.ascx
So edit this file and locate following text
and comment that code as below
Website/Checkout/PaymentForms/CreditCardPaymentForm.ascx
So edit this file and locate following text
Code: Select all
<tr>
<td valign="top">
<a Name="cvv_amex" href="#cvv_amex" onmouseover='CVV_AMEX_HoverLookupPanel.startCallback(event,"CVVAMES",null,null);' onmouseout='CVV_AMEX_HoverLookupPanel.hide();'><asp:Image ID="AmexCID" runat="server" ImageUrl="~/images/PaymentInstruments/cid_amex.gif" hspace="4" /></a>
</td>
<td valign="top">
<asp:Label ID="AmexCIDHelpText" runat="server" Text="For American Express, enter the four digits in small print on the front of the card."></asp:Label>
</td>
</tr>
Code: Select all
<%--<tr>
<td valign="top">
<a Name="cvv_amex" href="#cvv_amex" onmouseover='CVV_AMEX_HoverLookupPanel.startCallback(event,"CVVAMES",null,null);' onmouseout='CVV_AMEX_HoverLookupPanel.hide();'><asp:Image ID="AmexCID" runat="server" ImageUrl="~/images/PaymentInstruments/cid_amex.gif" hspace="4" /></a>
</td>
<td valign="top">
<asp:Label ID="AmexCIDHelpText" runat="server" Text="For American Express, enter the four digits in small print on the front of the card."></asp:Label>
</td>
</tr>--%>
Re: Ammex logo shows up on checkout page
Worked Like a Champ! Thank you.