Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The solution depends on the error that is being thrown, both to the customers as well as to the seller (available in Tools > Integration Console). I can't say whether it applies to your specific problem without having specific details about the error being faced, but usually it shows something like: We do not ship to this location. This happens because you have not configured the shipping options. By default, the regions allowed for shipping are limited to the country for which the merchant account is registered. So you need to explicitly specify that you need to ship internationally. Use the <code>&lt;world-area/&gt;</code> tag for this purpose.<br> Example code:</p> <pre><code>&lt;shipping-methods&gt; &lt;merchant-calculated-shipping name="SuperShip International"&gt; &lt;price currency="USD"&gt;14.00&lt;/price&gt; &lt;address-filters&gt; &lt;allowed-areas&gt; &lt;world-area/&gt; &lt;/allowed-areas&gt; &lt;excluded-areas&gt; &lt;postal-area&gt; &lt;country-code&gt;US&lt;/country-code&gt; &lt;/postal-area&gt; &lt;/excluded-areas&gt; &lt;/address-filters&gt; &lt;/merchant-calculated-shipping&gt; &lt;/shipping-methods&gt; </code></pre> <p>This code allows to ship everywhere in the world except in US.<br> CAUTION: Do not use <code>&lt;world-area/&gt;</code> in <code>&lt;excluded-areas&gt;</code> as it will override your <code>&lt;allowed-areas&gt;</code> and block all shipping regions. Reference link: <a href="https://developers.google.com/checkout/articles/Troubleshoot_Merchant_Issues" rel="nofollow">Troubleshooting Merchant Center and Checkout API Issues</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload