Page 53 of 394 FirstFirst ... 343515253545563103153 ... LastLast
Results 521 to 530 of 3932
  1. #521
    Join Date
    Dec 2006
    Posts
    10
    Plugin Contributions
    0

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

    Quote Originally Posted by Woodymon View Post
    And after following chain_man's recommends, keep in mind that both Google Checkout and the new PayPal Express Checkout are not standard Zen Cart checkout procedures.

    So you will not see either of the two Express Checkout options listed on the "Step 2 - Select Payment Method" page.

    But the step 2 page will continue to display standard PayPal IPN payment method (unless you disabled) which completely integrates into Zen Cart's standard checkout process.

    - Woody
    Thank you, Woody. I solved all the problems except that I still see 2 express checkout (PP & GCO) on the step 2 of 3. Could you tell me how to not show these options in the page step 2 of 3.

  2. #522
    Join Date
    Dec 2006
    Posts
    20
    Plugin Contributions
    0

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

    Quote Originally Posted by Jefflam View Post
    Thank you, Woody. I solved all the problems except that I still see 2 express checkout (PP & GCO) on the step 2 of 3. Could you tell me how to not show these options in the page step 2 of 3.
    In the ZC1.3.7 tpl_checkout_payment_default.php, you need to skip the radio button for GCO after line 134:

    PHP Code:
    <?php
      $radio_buttons 
    0;
      for (
    $i=0$n=sizeof($selection); $i<$n$i++) {
        
    // ** GOOGLE CHECKOUT **
          
    if($selection[$i]['id'] == "googlecheckout")
            continue;
        
    // ** END GOOGLE CHECKOUT **
    ?>
    For Paypal it should be fine because the radio button would represent the traditional (non-express) paypal payment. On the other hand, GCO does not have a non-express mode so it will need to be excluded from this page.

  3. #523
    Join Date
    Dec 2006
    Posts
    10
    Plugin Contributions
    0

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

    Hi everybody,

    thank you all of your help. This is the last issue i THINK.
    ZC137 + GCO104
    I moved fast to the testing GCO now but received 2 errors from https://sandbox.google.com/checkout
    1) bad signature on cart
    <?xml version="1.0" encoding="UTF-8"?>
    <error xmlns="http://checkout.google.com/schema/2" serial-number="824fd998-b770-42fe-905a-edfffa028e9e">
    <error-message>Bad Signature on Cart</error-message>
    </error>

    2) the http get method is invalid to use for sending requests.
    <?xml version="1.0" encoding="UTF-8"?>
    <error xmlns="http://checkout.google.com/schema/2" serial-number="eeb470d3-6a0d-493d-97c0-9165b2d75234">
    <error-message>The Http Get method is invalid to use for sending requests.</error-message>
    </error>
    I did setup 2 accounts for seller and buyer and activated them for test.
    Callback method: name/value pairs; shopping cart type: allow shopping cart with name/value pairs to be sent to google.

    Please give me help. Thank you in advance.

    http://fastener-outlet.com

  4. #524
    Join Date
    Dec 2006
    Posts
    10
    Plugin Contributions
    0

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

    Quote Originally Posted by Jefflam View Post
    Hi everybody,

    thank you all of your help. This is the last issue i THINK.
    ZC137 + GCO104
    I moved fast to the testing GCO now but received 2 errors from https://sandbox.google.com/checkout
    1) bad signature on cart
    <?xml version="1.0" encoding="UTF-8"?>
    <error xmlns="http://checkout.google.com/schema/2" serial-number="824fd998-b770-42fe-905a-edfffa028e9e">
    <error-message>Bad Signature on Cart</error-message>
    </error>

    2) the http get method is invalid to use for sending requests.
    <?xml version="1.0" encoding="UTF-8"?>
    <error xmlns="http://checkout.google.com/schema/2" serial-number="eeb470d3-6a0d-493d-97c0-9165b2d75234">
    <error-message>The Http Get method is invalid to use for sending requests.</error-message>
    </error>
    I did setup 2 accounts for seller and buyer and activated them for test.
    Callback method: name/value pairs; shopping cart type: allow shopping cart with name/value pairs to be sent to google.

    Please give me help. Thank you in advance.

    http://fastener-outlet.com
    a wrong key number was added in the GCO.

  5. #525
    Join Date
    Dec 2005
    Location
    Box Elder, SD
    Posts
    373
    Plugin Contributions
    0

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

    Quote Originally Posted by Jefflam View Post

    I did setup 2 accounts for seller and buyer and activated them for test.
    Callback method: name/value pairs; shopping cart type: allow shopping cart with name/value pairs to be sent to google.

    http://fastener-outlet.com
    If you're still having problems, you might want to change the callback method to XML.

  6. #526
    Join Date
    Dec 2006
    Posts
    10
    Plugin Contributions
    0

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

    Just thought I would check back in here today.

    I hope the file I posted isn't causing more problems for people.

    It looks like it doesn't help most people, but those are changes that had to be made to our file to get it to work as it should and it's working for us, so who knows :)

  7. #527
    Join Date
    Jul 2006
    Posts
    40
    Plugin Contributions
    0

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

    Some short feedback ..... installed GCO approx 3 weeks ago ..various hiccups with shipping rates but finally arrived at a Zencart 1.3.6 + GCO 1.5 working pretty well

    As of today, I am receiving approx 40+ % of my sales as GCO sales, and will save more than $10k this year on card processing fees. Since migrating to ZC + GCO im amazed at how many people prefer to pay with GCO ... wonderful ....keep up the good work to all the folks who's suggestions here helped me to get to this situation.

    small pointer : after long discussion with Godaddy , it seems that their $19.95 123 SSL certs DO work with GCO if the full ca-bundle is installed.

    Thanks !!

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

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

    Wishlist suggestion to the GC for ZC mod developers-

    Would it be possible to emulate the code employed by the new PayPal Express for ZC mod, to support "downloads" in Google Checkout. That is, send an email to the customer (purchasing the download) containing their shop account login credentials which they can then use to download the files they just purchased? I assume the account name and password are auto-generated by PayPal Express mod?

    Please say yes to this idea ;-)

    Woody

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

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

    Quote Originally Posted by dhan99 View Post
    For Paypal it should be fine because the radio button would represent the traditional (non-express) paypal payment.
    I'm not sure but I think Jefflam may have been referring to PayPal Express appearing on Step 2 page, not the "traditional" PayPal IPN radio button.

  10. #530
    Join Date
    Jan 2007
    Posts
    5
    Plugin Contributions
    0

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

    with ZC1.3.7 and GC 1.0.4, tax is always zero, and, USPS shipping is not working. If I use a differend payment method, the shipping and tax is correct in all cases.

    I've deleted and reinstalled GC 1.0.4 to no avail. I have no other mods and not sure what might be wrong.

    ideas?

 

 

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