user1493023
user1493023

Reputation: 99

Google Checkout on checkout page in magento

I want to display google checkout at one page checkout page in magento, so that customer will choose the payment options either he choose google checkout or he choose other like paypal.

I am using magento 1.7.0.2

Upvotes: 1

Views: 973

Answers (2)

Joey
Joey

Reputation: 492

Add this lil snippet of code on your checkout page:

php echo $this->getLayout()->createBlock('googlecheckout/link')->setTemplate('googlecheckout/link.phtml')->toHtml(); ?>

add '<' to the beginning of the code, stackoverflow removes it

Upvotes: 0

Mukesh
Mukesh

Reputation: 7778

You need to enable google checkout from Admin.

Go to System->Configuration->on left side select sales->google API Than select google checkout.

You also need to create sandbox account for google checkout on google.

Upvotes: 1

Related Questions