Zen Follower
- Join Date:
- May 2008
- Posts:
- 203
- Plugin Contributions:
- 0
Google Checkout - freeoptions. Need help!
I've been asking for assistance with getting the google freeoptions (ignored) message solved for a couple of months with no luck. I did some tinkering of my own and made an addition to the shipping_methods.php for "freeoptions" in both arrays. That got rid of the message, but I still can't have my customers select the free option!
I have free shipping for customers that purchase over $150. How can I make this option available for google checkout users?
<?php /** * File: googlecheckout/shipping_methods.php file */ $mc_shipping_methods = array( 'ups' => array( 'domestic_types' => array( '2DA' => '2nd Day Air', '3DS' => '3 Day Select', 'GND' => 'Ground', ), 'international_types' => array( 'WXS' => 'Worldwide Saver', 'XPD' => 'Worldwide Expedited', ), ), 'usps' => array( 'domestic_types' => array( 'EXPRESS' => 'Express Mail (1 - 2 days)', 'FIRST CLASS' => 'First-Class Mail (2 - 5 days)', 'PRIORITY' => 'Priority Mail (2 - 3 days)', 'PARCEL' => 'Parcel Post (4 - 7 days)', ), 'international_types' => array( 'Express Mail International (EMS)' => 'Express Mail International (EMS) (5 days)', 'Priority Mail International' => 'Priority Mail International (6 - 10 days)', 'First Class Mail International Package' => 'First Class Mail International Package (Varies)', ), ), 'freeoptions' => array( 'domestic_types' => array( 'FREEDOMESTIC' => 'Free First Class (1 - 2 days)', ), 'international_types' => array( 'FREEINTL' => 'Free International (6-10 days)', ), ), ); $mc_shipping_methods_names = array( 'ups' => 'United Parcel Service (1 x 0.10lbs)', 'usps' => 'United States Postal Service (1 x 0.10lbs)', 'freeoptions' => 'Free Shipping Option for purchases over $150 (1 x 0.10lbs)', ); ?>