Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You should try using an extension like <a href="http://www.magentocommerce.com/magento-connect/owebia-shipping-2.html" rel="nofollow">Owebia 2</a> (you can find <a href="http://www.owebia.com/contributions/magento/owebia-shipping/en/" rel="nofollow">documentation here</a>)</p> <p>This'll allow you to set up shipping rates and delivery methods depending on the country of the customer.</p> <p>Edit: You can use this for virtually any shipping like UPS or Fedex (I used it for UPS on the last website I worked on).</p> <p>Here's some config example</p> <pre><code># UPS National (France, Monaco, Andorre) { code: "expressupsnational", label: "Service STANDARD France : Livraison 24/48h", destination: "FR,MC,AD", fees: "{table {cart.weight} in 2:8.5, 12:14.5}", tracking_url: "http://wwwapps.ups.com/WebTracking/track", } </code></pre> <p>This was for france and set so that fees are related to cart weight (8.5 gold if cart is under 2kg, 14.5 gold if less than 12kg). Note that the label part is the name of the method displayed in frontend, and destination is the list of ISO codes of destination countries. Next part is for customers coming from Germany, Belgium...</p> <pre><code># UPS Zone 5 (DE,BE,LU,AT) { code: "expressupseurope5", label: "Service STANDARD Europe: Livraison 48/72h", destination: "DE,BE,LU,AT", fees: "{table {cart.weight} in 2:12.0, 12:24.0}", tracking_url: "http://wwwapps.ups.com/WebTracking/track", } </code></pre> <p>If you refer to the doc you'll see that you can add many conditions like attribute set, tax rates, number of products in cart etc... It's way more flexible than original Magento shipping methods.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

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