Ammex logo shows up on checkout page

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
dborden702
Ensign (ENS)
Ensign (ENS)
Posts: 4
Joined: Mon Mar 09, 2009 9:44 pm

Ammex logo shows up on checkout page

Post by dborden702 » Mon Jun 15, 2009 10:55 am

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

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Ammex logo shows up on checkout page

Post by mazhar » Tue Jun 16, 2009 5:43 am

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

User avatar
Kalamazoo
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 42
Joined: Wed Apr 01, 2009 6:10 pm

Re: Ammex logo shows up on checkout page

Post by Kalamazoo » Fri Jun 18, 2010 4:20 pm

Worked Like a Champ! Thank you.

Post Reply