This thread is really bad, so hard to find anything at all, even using the search 'within the thread' options..
It needs someone to thin it out a bit, or copy the best bits into a new thread.
I have had the issues with the freeoptions shipping not being transfered to google
No matter what I try, I can only get the basic flat rate to work, but I really could do with orders over 50.00 to have free shipping, is anyone still watching this thread from google who might help with this?
I had one bit of success, I have managed to transfer two methods through to google, one flat rate, and one on the dropdown thats free ie 0.00, to do that I copied the freeoptions bit from the shipping_methods.uk.php into the shipping_methods.php
so that I have..
PHP Code:
<?php
/**
* File: googlecheckout/shipping_methods.php file
*/
$mc_shipping_methods = array(
'flat' => array(
'domestic_types' =>
array(
'flat' => 'Best Way',
),
'international_types' =>
array(
'flat' => 'Best Way_1',
),
),
'freeoptions' => array(
'domestic_types' =>
array(
'freeoptions' => 'Free Options'
),
'international_types' =>
array(
'freeoptions' => 'Free Options intl'
)
),
);
$mc_shipping_methods_names = array(
'flat' => 'Flat Rate',
'freeoptions' => 'Free Options',
);
?>
All I have to do now, is figure some whay that the shipping_methods.php can do a check against the order value, and then only send the freeoptions 0.00 bit, instead of both, and then I think it might actually work.
Steven
Bookmarks