Originally Posted by
jondicks
<merchant-calculated-shipping name="FREE UK Delivery">
<price currency="GBP">0.000</price>
<shipping-restrictions>
<allowed-areas>
<us-zip-area>
<zip-pattern>00000</zip-pattern>
</us-zip-area>
</allowed-areas>
<excluded-areas>
<us-country-area country-area="ALL" />
</excluded-areas>
</shipping-restrictions>
</merchant-calculated-shipping>
Is this correct?
Hmm...
The equivalent part of mine looks like this :-
C#/VB.NET Code:
<shipping-methods>
<merchant-calculated-shipping name="UK Mainland">
<address-filters>
<allowed-areas>
<world-area />
</allowed-areas>
</address-filters>
<price currency="GBP">1.6900</price>
</merchant-calculated-shipping>
<merchant-calculated-shipping name="Rest of Europe">
<price currency="GBP">0.00</price>
</merchant-calculated-shipping>
<merchant-calculated-shipping name="Free Shipping">
<price currency="GBP">0.00</price>
</merchant-calculated-shipping>
</shipping-methods>
I'm not seeing the zipcodes at all - I have no zones at all defined though.....
Originally Posted by
jondicks
<buyer-language>en_US</buyer-language>
should this be UK?
Yup - that's the same as Mine.
Originally Posted by
jondicks
<merchant-calculation-results xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://checkout.google.com/schema/2">
<results>
<result address-id="824397627917598" shipping-name="FREE UK Delivery">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result address-id="824397627917598" shipping-name="<b>£9.99</b> - Republic of Ireland">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result address-id="824397627917598" shipping-name="International Zone 1">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result address-id="824397627917598" shipping-name="International Zone 2">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result address-id="824397627917598" shipping-name="International Zone 3">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result address-id="824397627917598" shipping-name="International Zone 4">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result address-id="824397627917598" shipping-name="International Zone 5">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
</results>
</merchant-calculation-results>
& mine then (although it's no help to you....) produces this :-
C#/VB.NET Code:
<merchant-calculation-results xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://checkout.google.com/schema/2">
<results>
<result shipping-name="UK Mainland" address-id="554732622173064">
<shippable>true</shippable>
<shipping-rate currency="GBP">1.99</shipping-rate>
</result>
<result shipping-name="Rest of Europe" address-id="554732622173064">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
<result shipping-name="Free Shipping" address-id="554732622173064">
<shippable>false</shippable>
<shipping-rate currency="GBP">0</shipping-rate>
</result>
</results>
</merchant-calculation-results>
I'd try deleting your zones.....
TTFN
BFG