Magento 2 – Get Shipping Price Below Minimum Amount

cartmagento2magento2.2shipping-methods

I need to get a quote in Magento2 cart page shipping estimation like Magento 1.x.

How to show all the shipping methods when entering any zip code.

I'm using webkul marketplace extension for sellers shipping so I need min amount is there else I need to add an amount to the particular method, display in the frontend.

Example shipping method 1 having min. order value $200 after it's free. Below $200 I need to add some amount.

Any help would be appreciated.

Best Answer

Use owebia shipping extension. install from

https://marketplace.magento.com/owebia-owebia-shipping-2.html enter image description here

https://en.store.owebia.com/magento2-module-advanced-shipping.html

Here's documentation for configuration.

https://owebia.com/os2/en/doc

condition 1:-For any zipcode,if order value $200 after it's free shiping_method1. and if value is less than $200 ( shipping_method2). enter image description here

{
   "shiping_method1": {
      "label": "Free shipping",
      "conditions" : {cart.price-tax+discount} > 200.00 // if value more than $200 
      "fees": 0

   }
  "shiping_method2": {
      "label": "Express Shipping",
       "conditions": "( {shiping_method1} ) && ( {cart.price-tax+discount} < 10 )",   // if value less than $200 then add any amount you want.
       "fees": 12  //some amount you need to add

} }

this is how you create multiple shipping methods with multiple conditions.

Hope it help you ! if any issue I love to Help you further..

Related Topic