Magento 2 Checkout Error – Sorry, No Quotes Are Available for This Order

checkoutmagento2shipping

Sometimes i get this error on checkout shipping page with login users (random times):

"Sorry, no quotes are available for this order at this time"

the problem is that rest/default/V1/carts/mine/estimate-shipping-methods-by-address-id is empty when i found the error

  • estimate-shipping-methods-by-address-id is empty (response [])
  • No errors on console
  • If a use guest checkout i have no error with same products in cart
  • Json "window.checkoutConfig" country_id and weight are right value
  • Magento 2.2.6 – Developer mode
  • Same error with fixed rate and table rate

How can i debug?

If i click "Update Shopping Cart" in cart page the problem solved and shipping calculation is right

Best Answer

If you are getting a "Sorry, no quotes are available for this order at this time." or a "This shipping method is not available" message under the "Shipping methods" section in the checkout, it is because your shipping methods don't have enough information about the customer/order to display any rates. In 99% of the cases, this is because you are using a shipping method that uses for example the customers postcode in order to calculate the shipping costs. Until the customer has entered a zipcode, there is no way for the shipping method to display any prices.

Check this link for more info : http://help.onestepcheckout.com/knowledge_base/topics/shipping-methods

Related Topic