Re: Google Checkout module for Zen Cart (beta)
Ropu,
What is the status of the other important outstanding issues that have been presented in this thread since 1.3RC2 release?
Could you start directing people to the bugtracker to post issues. I think much of the info posted in this thread regarding issues/bugs here is getting lost and not followed up on. At least with a bug tracker facility we could check the status of bugs, and not have to constantly repeat ourselves.
As long as the issues i have posted in last two weeks remain unresponded to and unresolved I cannot employ Google Checkout.
So I guess I will have to begin posting my issues to the Google Checkout merchant and developers forums on Google Groups.
Any news on initiating a discussion forum for this mod, one which supports multiple threads? Maybe in Google Groups?
Thanks,
Woody
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
ropu
thx woody!
ill drop the fix!
I'm not sure if I understand this statement. Did you include the one liner fix to orders.php in the latest mod version, so those whom are downloading 1.3RC2 from here on out will not have to apply themselves? Or are you just stating that it will be included in next version 1.3RC3?
And is there any hint of when 1.3RC3 will be available, containing fixes for many of the ongoing issues with 1.3RC2. Please let us know what's up.
Thanks,
Woody
Google checkout not clearing shopping cart
I just installed Zen-Cart + Google Checkout plugin
It works great except that after the order is processed, and you click the link to go back to my site, the shopping cart is still full...
Is this standard behavior? I would think that since the order was processed, it would clear the cart...
Thanks
David
Having trouble with google checkout - it is still gray.
I have followed the instructions to a hilt. I have tried this 3 times 2 of which were just copying over the original files and changed permissions on a couple log files, and I manually tried it in with the exact same results.
The link is grayed out, I have two google checkout accounts 1 is the sandbox. I have tried both accounts with same issue. If you contiinue to checkout you see the words Google Checkout with no Radio button which is weird because it does not show up that way when I set it up on OS Commerce.
I setup google checkout on OS Commerce latest version and it worked fine.
Any smart people out there that can tell me where to look or why I cannot get it work with Zen Cart Latest Version 1.3.7?
PLEASE HELP :) & THANKS
Re: Having trouble with google checkout - it is still gray.
Quote:
Originally Posted by
mgrade
I have followed the instructions to a hilt. I have tried this 3 times 2 of which were just copying over the original files and changed permissions on a couple log files, and I manually tried it in with the exact same results.
The link is grayed out, I have two google checkout accounts 1 is the sandbox. I have tried both accounts with same issue. If you contiinue to checkout you see the words Google Checkout with no Radio button which is weird because it does not show up that way when I set it up on OS Commerce.
I setup google checkout on OS Commerce latest version and it worked fine.
Any smart people out there that can tell me where to look or why I cannot get it work with Zen Cart Latest Version 1.3.7?
PLEASE HELP :) & THANKS
for me, it was greyed out becuase I didn't assign any weights to the products, so it couldn't calculate shipping for me...once I gave my products weight, it turned into a good checkout button
Re: Google Checkout module for Zen Cart (beta)
Ropu & Everyone-
I installed 1.3RC2 GC mod on another shop. And then I observed what some have been reporting in this thread, that is the LABEL "Google Checkout" is still appearing on the checkout payment page WITHOUT the radio button.
So ropu, your adjustment in 1.3RC2 removed the radio button but did not prevent the display of the shipping method label.
Below is what you will observe in the HTML source:
Code:
<label for="pmt-googlecheckout" class="radioButtonLabel">GoogleCheckout</label>
So I copied a few lines of relevant Google Checkout code from the 1.3RC1 version of
tpl_checkout_payment_default.php and integrated it into the latest Zen Cart 1.37 version of the same file.
(thus I added two new lines of code and commented out two other lines).
For those who want to edit themselves.
/includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_payment_default.php
At appx line 136
CHANGE THIS:
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 } ?>
TO THIS:
PHP Code:
<?php
if (sizeof($selection) > 1) {
// if (empty($selection[$i]['noradio'])) {
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'].'"'); ?>
<?php // } ?>
(note the last right brace commented out)
Hope this helps.
Woody
1 Attachment(s)
Re: Google Checkout module for Zen Cart (beta)
Forgot to attach... Here it is...
Zen Cart 1.37 tpl_checkout_payment_default.php
edited for Google Checkout 1.3RC2
Copy file into /includes/templates/YOUR_TEMPLATE/templates/
-Woody
Re: Google Checkout module for Zen Cart (beta)
Thanks for the info but that did not seem to work.
I am completely baffled unless I am missing something that was not in the documentation for some reason.
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
mgrade
Thanks for the info but that did not seem to work.
I am completely baffled unless I am missing something that was not in the documentation for some reason.
This was a reply to pio!pio!, correct?
Since we have many threads going on at once here best to include at least a small snippet of the original post when responding.
Thanks,
Woody
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
BlessIsaacola
For Google Checkout, you do not need to modify anything. Assuming you have the original file in the default template folder, you customer will not be able to checkout for free on step 2. Basically, google checkout is available to your customer from the login page and shopping cart. In step 2 it will display a static google checkout text. If you do not want this text you will need to modify the tpl_checkout_payment_default.php to remove like. You will notice the static text is not on our step 2 page on our site.
Sorry just got back from work. So on "tpl_checkout_payment_default.php" Do you mind telling me what do I need to modify? I know I messed up and don't know where to start to fix it. I am taking it step by step, please help and thanks for your helps!