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 (&amp;amp;pound;2.14) (0.03Kgs) (Inc Handling Fee: &amp;amp;pound;0.50)',
'4-0-0' => 'Royal Mail Airsure (&amp;amp;pound;6.28) (0.03Kgs) (Inc Handling Fee: &amp;amp;pound;0.50)',
'5-0-0' => 'Royal Mail Airsure - extra insurance (&amp;amp;pound;7.58) (0.03Kgs) (Inc Handling Fee: &amp;amp;pound;2.50)',
'6-0-0' => 'Royal Mail International Signed For (&amp;amp;pound;5.58) (0.03Kgs) (Inc Handling Fee: &amp;amp;pound;0.50)',
'7-0-0' => 'Royal Mail International Signed For - Extra insurance (&amp;amp;pound;7.58) (0.03Kgs)Insurance Fee',

),

'international_types' =>
array(
'1-0-0' => 'Royal Mail 1st Class Packet (&amp;amp;pound;1.14) (0.03Kgs)',
'2-0-0' => 'Royal Mail 1st Class Recorded Signed For (&amp;amp;pound;1.86) (0.03Kgs)Recorded Delivery fee',
'8-0-0' => 'Royal Mail Next Day Special Delivery (&amp;amp;pound;4.60) (0.03Kgs)',
'9-0-0' => 'Royal Mail Special Delivery 9:00am (&amp;amp;pound;10.30) (0.03Kgs)',

),
),
'rmamisfsmallpacket' => array(
'domestic_types' =>
array(
'rmamisfsmallpacket' => 'Royal Mail &amp;lt;b&amp;gt;Airmail&amp;lt;/b&amp;gt; delivery in 3-5 working days. &amp;lt;br /&amp;gt;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. &amp;lt;br /&amp;gt;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. &amp;lt;br /&amp;gt;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 &lt;span style=\&quot;color:red; font-weight:bold\&quot;&gt;International&lt;/span&gt; &lt;span style=\&quot;color: #555555; font-weight:bold\&quot;&gt;Signed For&lt;/span&gt;&amp;reg; &lt;i style=\&quot;font-weight: normal\&quot;&gt;&amp;quot;Small Packet&amp;quot;&lt;/i&gt;',
'rmamisfsmallpacket500' => 'Royal Mail &lt;span style=\&quot;color:red; font-weight:bold\&quot;&gt;International&lt;/span&gt; &lt;span style=\&quot;color: #555555; font-weight:bold\&quot;&gt;Signed For&lt;/span&gt;&amp;reg; &lt;i style=\&quot;font-weight: normal\&quot;&gt;&amp;quot;Small Packet&amp;quot;&lt;/i&gt; &lt;b&gt;Extra insurance&lt;/b&gt;',
'rmamassmallpacket500' => 'Royal Mail &lt;b&gt;Airsure&amp;reg;&lt;/b&gt; &lt;i style=\&quot;font-weight: normal\&quot;&gt;&amp;quot;Small Packet&amp;quot;&lt;/i&gt; &lt;b&gt;extra insurance&lt;/b&gt;',
'rm1stpacketsf' => 'Royal Mail 1&lt;sup&gt;st&lt;/sup&gt; Class &lt;b&gt;Recorded Signed For&lt;sup&gt;TM&lt;/sup&gt;&lt;/b&gt; &lt;i style=\&quot;font-weight: normal\&quot;&gt;&amp;quot;Packet&amp;quot;&lt;/i&gt;',
'storepickup' => 'Store Pickup',
);
?>