Page 133 of 394 FirstFirst ... 3383123131132133134135143183233 ... LastLast
Results 1,321 to 1,330 of 3932
  1. #1321
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default 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

  2. #1322
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by ropu View Post
    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

  3. #1323
    Join Date
    Apr 2007
    Posts
    5
    Plugin Contributions
    0

    Default 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

  4. #1324
    Join Date
    Apr 2007
    Posts
    6
    Plugin Contributions
    0

    Default 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
    Last edited by mgrade; 27 Apr 2007 at 02:15 AM.

  5. #1325
    Join Date
    Apr 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Having trouble with google checkout - it is still gray.

    Quote Originally Posted by mgrade View Post
    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

  6. #1326
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default 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
    Last edited by Woodymon; 27 Apr 2007 at 05:40 AM.

  7. #1327
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default 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
    Attached Files Attached Files

  8. #1328
    Join Date
    Apr 2007
    Posts
    6
    Plugin Contributions
    0

    Default 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.

  9. #1329
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by mgrade View Post
    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

  10. #1330
    Join Date
    Apr 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by BlessIsaacola View Post
    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!

 

 

Similar Threads

  1. v155 BETA feedback for Responsive-Classic in v155-beta
    By picaflor-azul in forum Addon Templates
    Replies: 51
    Last Post: 5 Mar 2016, 09:14 PM
  2. Google Checkout module support for ZC 1.5.0?
    By Woodymon in forum Addon Payment Modules
    Replies: 2
    Last Post: 21 Jan 2012, 03:18 AM
  3. Google Checkout - is there a module for 1.3.9g?
    By cchan in forum Addon Payment Modules
    Replies: 0
    Last Post: 9 Jan 2011, 05:04 AM
  4. Update Google Checkout Module or Custom Google Checkout?
    By pacificmanagment in forum Addon Payment Modules
    Replies: 1
    Last Post: 24 May 2010, 09:40 AM
  5. Replies: 1
    Last Post: 31 May 2009, 02:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR