Totally Zenned
- Join Date:
- May 2005
- Location:
- England
- Posts:
- 730
- Plugin Contributions:
- 0
Google Checkout and Advanced Shipper integration - help!!
Hello there,
I recently bought Advance Shipper from Ceon Dev. Basically, the shipping calculations are being picked up but by Shipping Calculator, but not shown to the customer at checkout. I reckon some code needs adding to support this module.
I am grateful for any help with this, I hope it is possible to pass the shipping over to Google Checkout.
Thanks in advance,
Heathenmagic
<?php /** * File: googlecheckout/shipping_methods.php file */ $mc_shipping_methods = array( 'advshipper' => array( 'domestic_types' => array( '3-0-0' => 'Royal Mail Airmail Small Packet (&pound;2.14) (0.03Kgs) (Inc Handling Fee: &pound;0.50)', '4-0-0' => 'Royal Mail Airsure (&pound;6.28) (0.03Kgs) (Inc Handling Fee: &pound;0.50)', '5-0-0' => 'Royal Mail Airsure - extra insurance (&pound;7.58) (0.03Kgs) (Inc Handling Fee: &pound;2.50)', '6-0-0' => 'Royal Mail International Signed For (&pound;5.58) (0.03Kgs) (Inc Handling Fee: &pound;0.50)', '7-0-0' => 'Royal Mail International Signed For - Extra insurance (&pound;7.58) (0.03Kgs)Insurance Fee', ), 'international_types' => array( '1-0-0' => 'Royal Mail 1st Class Packet (&pound;1.14) (0.03Kgs)', '2-0-0' => 'Royal Mail 1st Class Recorded Signed For (&pound;1.86) (0.03Kgs)Recorded Delivery fee', '8-0-0' => 'Royal Mail Next Day Special Delivery (&pound;4.60) (0.03Kgs)', '9-0-0' => 'Royal Mail Special Delivery 9:00am (&pound;10.30) (0.03Kgs)', ), ), 'rmamisfsmallpacket' => array( 'domestic_types' => array( 'rmamisfsmallpacket' => 'Royal Mail <b>Airmail</b> delivery in 3-5 working days. <br />Parcel requires a signature, tracking can be provided. Delivery to United States : 0.030 kg(s)', ), 'international_types' => array( ), ), 'rmamisfsmallpacket500' => array( 'domestic_types' => array( 'rmamisfsmallpacket500' => 'Airmail delivery in 3-5 working days. <br />Parcel requires a signature, tracking can be provided. Delivery to United States : 0.030 kgs', ), 'international_types' => array( ), ), 'rmamassmallpacket500' => array( 'domestic_types' => array( 'rmamassmallpacket500' => 'Airmail Express delivery in 2-4 working days. <br />Parcel requires a signature, tracking can be provided. Delivery to United States : 0.030 kgs', ), 'international_types' => array( ), ), 'rm1stpacketsf' => array( 'domestic_types' => array( ), 'international_types' => array( 'rm1stpacketsf' => 'Great Britain and Northern Ireland only : 0.030 kg(s)', ), ), 'storepickup' => array( 'domestic_types' => array( ), 'international_types' => array( 'storepickup' => 'Walk In', ), ), ); $mc_shipping_methods_names = array( 'advshipper' => 'Advanced Shipper', 'rmamisfsmallpacket' => 'Royal Mail <span style=\"color:red; font-weight:bold\">International</span> <span style=\"color: #555555; font-weight:bold\">Signed For</span>® <i style=\"font-weight: normal\">"Small Packet"</i>', 'rmamisfsmallpacket500' => 'Royal Mail <span style=\"color:red; font-weight:bold\">International</span> <span style=\"color: #555555; font-weight:bold\">Signed For</span>® <i style=\"font-weight: normal\">"Small Packet"</i> <b>Extra insurance</b>', 'rmamassmallpacket500' => 'Royal Mail <b>Airsure®</b> <i style=\"font-weight: normal\">"Small Packet"</i> <b>extra insurance</b>', 'rm1stpacketsf' => 'Royal Mail 1<sup>st</sup> Class <b>Recorded Signed For<sup>TM</sup></b> <i style=\"font-weight: normal\">"Packet"</i>', 'storepickup' => 'Store Pickup', ); ?>