Somewhat... Google tries to use your shipping calculator to find the shipping price. If after 3 seconds it doesn't get a response it sets the price you set on your Default Values for Real Time Shipping Rates section.
To help speed it up you will need to delete any shipping methods you aren't using from the shipping_methods.php file
Since I couldn't get free shipping working right i pulled it out. Mine 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( 'PRIORITY' => 'Priority Mail', ), 'international_types' => array( 'Priority Mail International' => 'Priority Mail International (6 - 10 days)', ), ), ); $mc_shipping_methods_names = array( 'usps' => 'USPS', ); ?>



