Page 1 of 1

Ammex logo shows up on checkout page

Posted: Mon Jun 15, 2009 10:55 am
by dborden702
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

Re: Ammex logo shows up on checkout page

Posted: Tue Jun 16, 2009 5:43 am
by mazhar
For that you need to manually comment amex static information in
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>
and comment that code as below

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

Posted: Fri Jun 18, 2010 4:20 pm
by Kalamazoo
Worked Like a Champ! Thank you.