Page 318 of 394 FirstFirst ... 218268308316317318319320328368 ... LastLast
Results 3,171 to 3,180 of 3932
  1. #3171
    Join Date
    Aug 2008
    Posts
    217
    Plugin Contributions
    0

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

    I finally got Per Unit perweight to work with Google Checkout.

    I went to ADMIN > MODULES > PAYMENT > GOOGLE CHECKOUT > EDIT >

    Default Values for Real Time Shipping Rates
    Default values for real time rates in case the webservice call fails.
    Set Default Value to 0 to disable the method
    Shipping Generator

    clicked on the link

    generated the code

    and pasted that to the bottom of my shipping_methods.php file in the googlecheckout folder to end up with code that looks like this

    Code:
    <?php
    /*
     **GOOGLE CHECKOUT ** v1.4.7
     * @version $Id: shipping_methods.php 5852 2007-12-14 14:58:57Z ropu $
     * 
     */
      // this are all the available methods for each shipping provider, 
      // see that you must set flat methods too!
      // CONSTRAINT: Method's names MUST be UNIQUE
      // Script to create new shipping methods
      // http://demo.globant.com/~brovagnati/tools -> Shipping Method Generator
     
      $mc_shipping_methods = array(
                            'usps' => array(
                                        'domestic_types' =>
                                          array(
                                              'EXPRESS' => 'Express Mail',
                                              'FIRST CLASS' => 'First-Class Mail',
                                              'PRIORITY' => 'Priority Mail',
                                              'PARCEL' => 'Parcel Post',
                                              'BPM' => 'Bound Printed Material',
                                              'LIBRARY' => 'Library'
                                               ),
                                        'international_types' =>
                                          array(
                                              'Global Express Guaranteed' => 'Global Express Guaranteed (1 - 3 days)',
                                              'Global Express Guaranteed Non-Document Rectangular' => 'Global Express Guaranteed Non-Document Rectangular (1 - 3 days)',
                                              'Global Express Guaranteed Non-Document Non-Rectangular' => 'Global Express Guaranteed Non-Document Non-Rectangular (1 - 3 days)',
                                              'Express Mail International (EMS)' => 'Express Mail International (EMS) (3 - 5 days)',
                                              'Express Mail International (EMS) Flat Rate Envelope' => 'Express Mail International (EMS) Flat Rate Envelope (3 - 5 days)',
                                              'Priority Mail International' => 'Priority Mail International (6 - 10 days)',
                                              'Priority Mail International Flat Rate Box' => 'Priority Mail International Flat Rate Box (6 - 10 days)',
                                              'Priority Mail International Flat Rate Envelope' => 'Priority Mail International Flat Rate Envelope',
                                              'First-Class Mail International' => 'First-Class Mail International',
                                              
                                              ),                                        
                                            ),
    
                            'fedexexpress' => array(
                                        'domestic_types' =>
                                          array(
                                              '06' => 'FedEx First Overnight',
                                              '01' => 'FedEx Priority Overnight',
                                              '05' => 'FedEx Standard Overnight',
                                              '03' => 'FedEx 2Day',
                                              '20' => 'FedEx Express Saver',
    
                                               ),
    
                                        'international_types' =>
                                          array(
                                              '01' => 'FedEx International Priority',
                                              '03' => 'FedEx International Economy',
    
                                               ),
                                            ),
                            'fedexground' => array(
                                        'domestic_types' =>
                                          array(
                                              '90' => 'FedEx Home Delivery',
    
                                               ),
    
                                        'international_types' =>
                                          array(
    
                                               ),
                                            ),
                            'fedex1' => array(
                                        'domestic_types' =>
                                          array(
                                              '01' => 'Priority (by 10:30AM, later for rural)',
                                              '03' => '2 Day Air',
                                              '05' => 'Standard Overnight (by 3PM, later for rural)',
                                              '06' => 'First Overnight',
                                              '20' => 'Express Saver (3 Day)',
                                              '90' => 'Home Delivery',
                                              '92' => 'Ground Service'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              '01' => 'International Priority (1-3 Days)',
                                              '03' => 'International Economy (4-5 Days)',
                                              '06' => 'International First',
                                              '90' => 'International Home Delivery',
                                              '92' => 'International Ground Service'
                                               ),
                                            ),
                            'ups' => array(
                                        'domestic_types' =>
                                          array(
                                              '1DM' => 'Next Day Air Early AM',
                                              '1DML' => 'Next Day Air Early AM Letter',
                                              '1DA' => 'Next Day Air',
                                              '1DAL' => 'Next Day Air Letter',
                                              '1DAPI' => 'Next Day Air Intra (Puerto Rico)',
                                              '1DP' => 'Next Day Air Saver',
                                              '1DPL' => 'Next Day Air Saver Letter',
                                              '2DM' => '2nd Day Air AM',
                                              '2DML' => '2nd Day Air AM Letter',
                                              '2DA' => '2nd Day Air',
                                              '2DAL' => '2nd Day Air Letter',
                                              '3DS' => '3 Day Select',
                                              'GND' => 'Ground',
                                              'GNDCOM' => 'Ground Commercial',
                                              'GNDRES' => 'Ground Residential',
                                              'STD' => 'Canada Standard',
                                              'XPR' => 'Worldwide Express',
                                              'XPRL' => 'worldwide Express Letter',
                                              'XDM' => 'Worldwide Express Plus',
                                              'XDML' => 'Worldwide Express Plus Letter',
                                              'XPD' => 'Worldwide Expedited'
                                               ),
    
                                        'international_types' =>
                                          array(
    
                                               ),
                                            ),
                            'zones' => array(
                                        'domestic_types' =>
                                          array(
                                              'zones' => 'Zones Rates'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'zones' => 'Zones Rates intl'
                                               ),
                                            ),
                            'freeoptions' => array(
                                        'domestic_types' =>
                                          array(
                                              'freeoptions' => 'Free Options'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'freeoptions' => 'Free Options intl'
                                               ),
                                            ),
                            'freeshipper' => array(
                                        'domestic_types' =>
                                          array(
                                              'freeshipper' => 'Free Shipper'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'freeshipper' => 'Free Shipper intl'
                                               ),
                                            ),
                            'perweightunit' => array(
                                        'domestic_types' =>
                                          array(
                                              'perweightunit' => 'Perweight Unit'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'perweightunit' => 'Perweight Unit intl'
                                               ),
                                            ),
                            'storepickup' => array(
                                        'domestic_types' =>
                                          array(
                                              'storepickup' => 'Store Pickup'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'storepickup' => 'Store Pickup intl'
                                               ),
                                            ),
                            'flat' => array(
                                        'domestic_types' =>
                                          array(
                                              'flat' => 'Flat Rate Per Order'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'flat' => 'Flat Rate Per Order intl'
                                               ),
                                            ),
                            'item' => array(
                                        'domestic_types' =>
                                          array(
                                              'item' => 'Flat Rate Per Item'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'item' => 'Flat Rate Per Item intl'
                                               ),
                                            ),
                            'table' => array(
                                        'domestic_types' =>
                                          array(
                                              'table' => 'Vary by Weight/Price'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'table' => 'Vary by Weight/Price intl'
                                               ),
                                            ),
                            'itemnational' => array(
                                        'domestic_types' =>
                                          array(
                                              'itemnational' => 'Item National',
    
                                               ),
    
                                        'international_types' =>
                                          array(
    
                                               ),
                                            ),
                            'bodykits' => array(
                                        'domestic_types' =>
                                          array(
                                              'bodykits' => 'National',
    
                                               ),
    
                                        'international_types' =>
                                          array(
                                               'bodykits' => 'International',
                                               ),
                                            ),
                            'iteminternational' => array(
                                        'domestic_types' =>
                                          array(
    
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'iteminternational' => 'Item International',
    
                                               ),
                                            ),                                        
                                      );
    
      $mc_shipping_methods_names = array( 
                                             'usps' => 'USPS',
                                             'fedex1' => 'FedEx',
                                             'ups' => 'UPS',
                                             'zones' => 'Zones',
                                             'fedexexpress' => 'Fedex Express',
                                             'fedexground' => 'Fedex Ground',
                                             'freeoptions' => 'Free Options',
                                             'freeshipper' => 'Free Shipper',
                                             'perweightunit' => 'Perweight Unit',
                                             'storepickup' => 'Store Pickup',
                                             'flat' => 'Flat Rate',
                                             'item' => 'Item',
                                             'table' => 'Table',
                                             'itemnational' => 'Per Item National',
                                             'iteminternational' => 'Per Item International',
                                             'bodykits' => 'Zoned Flate Rate for Product Classes',
                                            );  
    ?>
    <?php
    /**
      * File: googlecheckout/shipping_methods.php file
      */ 
    $mc_shipping_methods = array(
                            'perweightunit' => array(
                                        'domestic_types' =>
                                          array(
                                              'perweightunit' => ' ',
    
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'perweightunit' => ' _1',
    
                                               ),
                                            ),
                                      );
    
    $mc_shipping_methods_names = array(
                                             'perweightunit' => 'Shipping &amp; Handling',
                                            );
    ?>

  2. #3172
    Join Date
    Oct 2008
    Posts
    179
    Plugin Contributions
    0

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

    Just installed the mod and it works great, but I was unaware that orders do not show in ZC admin. At least when users use PayPal, the order status can be updated from ZC. Is there a way of changing this?
    www.grapediscounts.com
    Zen Version 1.3.9f, Mods: Click-Show-Hide Menu, IH3, Editable SB, Recently Viewed SB, Froogle, EZ-Pop

  3. #3173
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

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

    Quote Originally Posted by stlnyc View Post
    Just installed the mod and it works great, but I was unaware that orders do not show in ZC admin. At least when users use PayPal, the order status can be updated from ZC. Is there a way of changing this?
    If the GC orders are not showing up in ZC admin, something is very wrong. Check your GC integration console for error messages.

  4. #3174
    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 stlnyc View Post
    Just installed the mod and it works great, but I was unaware that orders do not show in ZC admin. At least when users use PayPal, the order status can be updated from ZC. Is there a way of changing this?
    Have you set your callback url in your googlecheckout account to https://www.hillsideliquors.com/goog...nsehandler.php ?

    And set the callback type to XML?

    If those are already set, check the logs in your googlecheckout account under Tools->Integration Console. The logs should give an idea of any problems.

  5. #3175
    Join Date
    Oct 2008
    Posts
    179
    Plugin Contributions
    0

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

    Quote Originally Posted by chain_man View Post
    Have you set your callback url in your googlecheckout account to https://www.hillsideliquors.com/goog...nsehandler.php ?

    And set the callback type to XML?

    If those are already set, check the logs in your googlecheckout account under Tools->Integration Console. The logs should give an idea of any problems.
    Thanks Doug. Thats what I was missing.
    www.grapediscounts.com
    Zen Version 1.3.9f, Mods: Click-Show-Hide Menu, IH3, Editable SB, Recently Viewed SB, Froogle, EZ-Pop

  6. #3176
    Join Date
    Mar 2005
    Location
    Miami, FL
    Posts
    30
    Plugin Contributions
    0

    Default Has anyone successfully integrated Google Checkout with Super Orders?

    Has anyone successfully integrated Google Checkout with Super Orders? I'm currently installing ZC 1.3.8a and Super Orders to upgrade my site, but when I went to integrate Google Checkout I found that Super Orders had substantially changed admin/orders.php to the point where I'm not sure exactly what to replace...if anyone has successfully integrated the two, I would greatly appreciate knowing where you inserted the GC code into the Super Orders modified admin/orders.php file.

  7. #3177
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

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

    Quote Originally Posted by kiddo View Post
    No real resolution to the above post, but moved to a ZC certified host and no more problems.

    Coolies!
    What is different than the module?
    Cheers!
    v2.0+

  8. #3178
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

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

    Quote Originally Posted by webskipper View Post
    What is different than the module?
    I'm not sure what you are asking.

  9. #3179
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

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

    Oh, you said you did not experience any issues with GC since being on a GC certified Server. Just wondering if they had a GC version that was different.

    I certainly hope that GC gets a heck of a lot better and that the Yahoo/MS deal does not kill the need to use the Google Webmaster tools. I am still employing them and discovering more benefits everyday.
    Cheers!
    v2.0+

  10. #3180
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

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

    Ah, I see what you mean. I didn't mean a Google certified server, I said a Zen Cart certified one. I'm using the same Google Checkout module for Zen Cart as everyone else. Nothing extra.

    I've had very good luck with it.

 

 

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