osCmax v2.5 User Manual
Results 1 to 4 of 4

google checkout with shipping cost??

This is a discussion on google checkout with shipping cost?? within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi, we have an oscommerce shop.. we are trying to implement google checkout onto our shop.. but the problem is ...

      
  1. #1
    New Member
    Join Date
    Sep 2008
    Posts
    21
    Rep Power
    0


    Default google checkout with shipping cost??

    Hi,
    we have an oscommerce shop.. we are trying to implement google checkout onto our shop.. but the problem is that we dont know how can we add shipping cost on it.
    currently we have TABLE module integrated which calculates the shipping cost according to the weight of the products.
    here is the table:
    Shipping Table
    0.5:4.75,1:4.88,2:4.76,4:5.99,6:7.99,10:9.70,20:15 .50,30:17.00,35:19.00,45:37.00,60:55.00,75:69.95,8 5:78.79,100:88.99,1000:150

    means upto 0.5kg = £4.75
    and upto 1kg = £4.88 and so on...
    how can i implement this table in googlecheckout??
    please help me here.. im using 1.4v of googlecheckout.
    awaiting reply
    thanks
    bbye

  2. #2
    New Member
    Join Date
    Sep 2008
    Posts
    21
    Rep Power
    0


    Default Re: google checkout with shipping cost??

    anyone with any suggestion or help??
    please i really need this thing to work.
    awaiting reply..

    bump!

  3. #3
    jpf
    jpf is offline
    osCMax Testing Team
    jpf's Avatar
    Join Date
    Sep 2003
    Location
    Manitoba, Canada
    Posts
    2,699
    Rep Power
    22


    Default Re: google checkout with shipping cost??

    Check your Sort Order for all modules Including Shipping Module(Table Rate), Credit Module (Googlecheckout) and Taxes too.......
    JPF - osCMax Fourm Moderator - To contact, post on the forum or click here
    Try out our osCMax at: Live Catalog Demo
    Limited access Admin: Live Admin Demo
    Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!

  4. #4
    New Member
    Join Date
    Sep 2008
    Posts
    21
    Rep Power
    0


    Default Re: google checkout with shipping cost??

    shipping modules work perfectly fine on our website.. but on google checkout it does shows delivery charge button but no amount in front of it.
    here is the delivery information file which is being used by google checkout:
    <?php
    /*
    **GOOGLE CHECKOUT ** v1.4
    * @version $Id: shipping_methods.php 5342 2007-06-04 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
    // Tools for Google Checkout Module -> 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'
    ),

    'international_types' =>
    array(
    'GXG Document' => 'Global Express Guaranteed Document Service',
    'GXG Non-Document' => 'Global Express Guaranteed Non-Document Service',
    'Express' => 'Global Express Mail (EMS)',
    'Priority Lg' => 'Global Priority Mail - Flat-rate Envelope (large)',
    'Priority Sm' => 'Global Priority Mail - Flat-rate Envelope (small)',
    'Priority Var' => 'Global Priority Mail - Variable Weight Envelope (single)',
    'Airmail Letter' => 'Airmail Letter Post',
    'Airmail Parcel' => 'Airmail Parcel Post',
    'Surface Letter' => 'Economy (Surface) Letter Post',
    'Surface Post' => 'Economy (Surface) Parcel Post'
    ),
    ),
    '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'
    ),
    ),
    'upsxml' => array(
    'domestic_types' =>
    array(
    'UPS Ground' => 'UPS Ground',
    'UPS 3 Day Select' => 'UPS 3 Day Select',
    'UPS 2nd Day Air A.M.' => 'UPS 2nd Day Air A.M.',
    'UPS 2nd Day Air' => 'UPS 2nd Day Air',
    'UPS Next Day Air Saver' => 'UPS Next Day Air Saver',
    'UPS Next Day Air Early A.M.' => 'UPS Next Day Air Early A.M.',
    'UPS Next Day Air' => 'UPS Next Day Air'
    ),

    'international_types' =>
    array(
    'UPS Worldwide Expedited' => 'UPS Worldwide Expedited',
    'UPS Saver' => 'UPS Saver'
    ),
    ),
    'zones' => array(
    'domestic_types' =>
    array(
    'zones' => 'Zones Rates'
    ),

    'international_types' =>
    array(
    'zones' => 'Zones Rates 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(
    ),
    ),
    'itemint' => array(
    'domestic_types' =>
    array(
    ),

    'international_types' =>
    array(
    'itemint' => 'Flat Rate Per Item intl'
    ),
    ),
    'table' => array(
    'domestic_types' =>
    array(
    'table' => 'Table'
    ),

    'international_types' =>
    array(
    'table' => 'Table intl'
    ),
    ),
    );

    $mc_shipping_methods_names = array(
    'usps' => 'USPS',
    'fedex1' => 'FedEx',
    'upsxml' => 'Ups',
    'zones' => 'Zones',
    'flat' => 'Flat Rate',
    'item' => 'Item',
    'itemint' => 'Item Inter',
    'table' => 'Table',
    );

    ?>
    this thing does show shipping methods but no amount..
    i only need table shipping method.. what can i replace here to make it use the above shipping amount table given in my first post?
    thanks

Similar Threads

  1. Google checkout, show wrong shipping methods
    By ptt81 in forum osCmax v2 Customization/Mods
    Replies: 2
    Last Post: 04-07-2009, 07:20 PM
  2. Manual Shipping Cost
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 12-02-2008, 01:14 AM
  3. MVS Shipping Cost Estimator
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 08-29-2008, 12:01 PM
  4. MVS Shipping Cost Estimator
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 03-06-2008, 09:00 PM
  5. google checkout does not calculate sales tax or shipping rate
    By maullah in forum osCmax v2 Customization/Mods
    Replies: 0
    Last Post: 11-12-2007, 08:53 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
  •