Exclusive use of Google Checkout As Payment Processing?

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
combra
Lieutenant Commander (LCDR)
Lieutenant Commander (LCDR)
Posts: 98
Joined: Thu Jul 31, 2008 7:09 pm

Exclusive use of Google Checkout As Payment Processing?

Post by combra » Thu Jul 31, 2008 7:15 pm

Does anybody have a website where they use Google Checkout as the only payment processing method?

AbleCommerce said that I could hide the regular checkout option and force GCO as the only payment method. I would like to see this in action before I purchase the AbleCommerce software. Thanks!
AC 7.0.7 build 14600

Robbie@FireFold
Commodore (COMO)
Commodore (COMO)
Posts: 433
Joined: Wed May 28, 2008 9:42 am
Location: Concord, NC
Contact:

Re: Exclusive use of Google Checkout As Payment Processing?

Post by Robbie@FireFold » Fri Aug 01, 2008 7:00 am

I'm sure it's easily done.

What is your reasoing behind that? On a personal and a business level Google Checkout isn't my first pick to pay.
Robbie Hodge
General Manager
Robbie@FireFold.com
http://www.FireFold.com

combra
Lieutenant Commander (LCDR)
Lieutenant Commander (LCDR)
Posts: 98
Joined: Thu Jul 31, 2008 7:09 pm

Re: Exclusive use of Google Checkout As Payment Processing?

Post by combra » Fri Aug 01, 2008 8:06 am

Robbie@FireFold wrote:I'm sure it's easily done.

What is your reasoing behind that? On a personal and a business level Google Checkout isn't my first pick to pay.
That's for the reply. Yeah, AbleCommerce told me it could be done as well, but I was hoping someone here already does it so I could see how it interfaces before buying the software.

I already use GCO exlusively on my current website, and it's by far one of the better payment processing providers especially for fraud protection, low CC rates, and ability to get reduced or free processing since I use Google Adwords. I also prefer it, because I hate websites where you need another checkout process, as I hate doing that myself, and many of my customers already have GCO accounts.
AC 7.0.7 build 14600

User avatar
AbleMods
Master Yoda
Master Yoda
Posts: 5170
Joined: Wed Sep 26, 2007 5:47 am
Location: Fort Myers, Florida USA

Re: Exclusive use of Google Checkout As Payment Processing?

Post by AbleMods » Sun Aug 03, 2008 9:23 pm

There's really nothing to see "in action". The checkout buttons are rendered based on payment methods that are configured and available for the visitor. If GC is the only method configured, only the gc checkout button will be visible.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com

combra
Lieutenant Commander (LCDR)
Lieutenant Commander (LCDR)
Posts: 98
Joined: Thu Jul 31, 2008 7:09 pm

Re: Exclusive use of Google Checkout As Payment Processing?

Post by combra » Tue Aug 05, 2008 4:32 pm

Thanks for all the replies.

I've downloaded 7.0 to my server and added Google Checkout. I have two buttons appearing on the basket page, the normal 'Checkout Now' and the Google Checkout button. I was told I can hide the regular 'Checkout Now' button so GCO is the only option with the code, set visable='false'

Where and how do I make this change?

Thanks in advance!
AC 7.0.7 build 14600

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

Re: Exclusive use of Google Checkout As Payment Processing?

Post by mazhar » Wed Aug 06, 2008 4:58 am

AbleCommerce said that I could hide the regular checkout option and force GCO as the only payment method. I would like to see this in action before I purchase the AbleCommerce software. Thanks!
You need to hide this Checkout button on two places 1)- Mini Basket and the 2)- Basket

In order to hide this on mini basket edit the ConLib/MiniBasket.ascx file and find the following line of code in it

Code: Select all

<asp:ImageButton ID="CheckoutButton" runat="server" ToolTip="Checkout Now" SkinID="CheckoutNow" OnClick="CheckoutButton_Click" />
and make it look like

Code: Select all

<asp:ImageButton ID="CheckoutButton" runat="server" ToolTip="Checkout Now" SkinID="CheckoutNow" OnClick="CheckoutButton_Click" Visible="false" />
This will hide Checkout Button on the Mini Basket

Now Edit the ConLib/Basket.ascx file and find the following line of code in it

Code: Select all

<asp:ImageButton ID="CheckoutButton" runat="server" SkinID="CheckoutNow" OnClick="CheckoutButton_Click" Text="Checkout" EnableViewState="false"></asp:ImageButton>
and make it look like

Code: Select all

<asp:ImageButton ID="CheckoutButton" runat="server" SkinID="CheckoutNow" OnClick="CheckoutButton_Click" Text="Checkout" EnableViewState="false" Visible="false"></asp:ImageButton>

Now edit the ConLib/Basket.ascx.cs file and find the following line of code

Code: Select all

CheckoutButton.Visible = true;
and make it look like

Code: Select all

//CheckoutButton.Visible = true;
This will hide Checkout Button on the Basket Page

combra
Lieutenant Commander (LCDR)
Lieutenant Commander (LCDR)
Posts: 98
Joined: Thu Jul 31, 2008 7:09 pm

Re: Exclusive use of Google Checkout As Payment Processing?

Post by combra » Wed Aug 06, 2008 10:19 am

Thank You!
AC 7.0.7 build 14600

Post Reply