
Originally Posted by
zgraphic
I really dont know what went wrong. I download the latest version "google-checkout-zencart-v1.3RC2" upload the files.
Problems are
1) when I use sandbox.google to check out, the link don't work(page can not be found), Maybe I set it up wrong on google part.
Very likely. In the module config try setting to http (not https) for sandbox testing. Be sure the 'sandbox' merchant key/id are properly entered (no spaces at the end of either).
In Google 'sandbox' Seller account (on Google server) be sure to set proper responsehandler URL and callback method.

Originally Posted by
zgraphic
If I use checkout.google.com, it worked. I can see the order from my google account.
That is good news. Pretty much verifies you have made a simple mistake in setting up the sandbox config.

Originally Posted by
zgraphic
2) But shipping still showing $0.00 on all shipping options on google check out. Where do I set up shipping charge? I use UPS and USPS. I want to limited to only few options for shipping, just ground and priority mail.
Many of us are observing this issue. Note I have posted this problem several times during the last week, and as of yet no reply from ropu. I assume it is in his "queue". Should be a top priority.

Originally Posted by
zgraphic
3) Google check out option showing even after customer login to my web site. On the payment page, the radio "google check out" appear. If select it, it doesn't go to "google check out" page. It go to "Thank you you purchase" page. The order showing in the admin area, but nothing on google account.
Again I ask: Did you re-upload the CORE (un-edited) Zen Cart 1.37 file "tpl_checkout_payment_default.php" to your templates directory. Do not upload from a previous Google Checkout mod. You need to do this. Please review my previous instructions on this.
OK, since for whatever reason you are failing to re-upload a copy of 1.37 core template file "tpl_checkout_payment_default.php", here is what you likely need to edit in that file (depends on the previous mod version you had installed).
CHANGE:
PHP Code:
<?php
if (sizeof($selection) > 1) {
if($selection[$i]['id'] == "googlecheckout")
continue;
?>
<?php echo zen_draw_radio_field('payment', $selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true : false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
TO:
PHP Code:
<?php
if (sizeof($selection) > 1) {
if (empty($selection[$i]['noradio'])) {
?>
<?php echo zen_draw_radio_field('payment', $selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true : false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
<?php } ?>
But best to not edit the file. Instead as I've suggested you should upload the new 1.37 version (as ropu previously distributed an OLD version of that file with his mod and which does not include new 1.37 code).
Good luck,
Woody
Bookmarks