Magento 2 - Table Rate shipping method not showing in cart & checkout pageShipping Table Rates on Weight for local area and for States. How do I set up using Shipping Tableupdating magento table rate shipping method with thousands of zip codesShipping Rate Calculating for given Country,State,Postcode and PriceMagento2 - Creating Table Rate for Fedex Shipping OptionsMagento 2 - Shipping fee using table rates always zero when adding more items in cartMagento 2 : Table Rate Shipping Method Not WorkingGet shipping price with and without taxesHow to change shipping cost per weight if is more than 10kgMagento 2 How to get multiple table rates data programmatically?Shipping rate calculation in Table rate Shipping method Magento 2
Android Studio 3.6 canary 6 - Gradle throwing DefaultProjectSyncIssues exception
Story where diplomats use codes for emotions
How do ohm meters measure high resistances?
What happens if a caster is surprised while casting a spell with a long casting time?
Does a lens with a bigger max. aperture focus faster than a lens with a smaller max. aperture?
Ways to get SMD resistors from a strip
"I am [the / an] owner of a bookstore"?
13th chords on guitar
Why was p[:] designed to work differently in these two situations?
Early 2000s movie about time travel, protagonist travels back to save girlfriend, then into multiple points in future
Do home values typically rise and fall consistently across different price ranges?
Why was Pan Am Flight 103 flying over Lockerbie?
Are Valenar elves and Aereni elves different races of elves?
Does a return economy-class seat between London and San Francisco release 5.28 tonnes of CO2 equivalents?
Cooking a nice pan seared steak for picky eaters
Why were the first airplanes "backwards"?
/etc/hosts not working
What verb for taking advantage fits in "I don't want to ________ on the friendship"?
Traversing Eurasia: A Cryptic Journey
Having to constantly redo everything because I don't know how to do it?
Can a successful book series let the bad guy win?
Word ending in "-ine" for rat-like
How can I open this door latch with the knobs removed?
If I were to build a J3 cub twice the size of the original using the same CG would it fly?
Magento 2 - Table Rate shipping method not showing in cart & checkout page
Shipping Table Rates on Weight for local area and for States. How do I set up using Shipping Tableupdating magento table rate shipping method with thousands of zip codesShipping Rate Calculating for given Country,State,Postcode and PriceMagento2 - Creating Table Rate for Fedex Shipping OptionsMagento 2 - Shipping fee using table rates always zero when adding more items in cartMagento 2 : Table Rate Shipping Method Not WorkingGet shipping price with and without taxesHow to change shipping cost per weight if is more than 10kgMagento 2 How to get multiple table rates data programmatically?Shipping rate calculation in Table rate Shipping method Magento 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am using the Magento 2.3.1 for my store. I just only enabled Table Rate shipping method with Price Vs Destination.
After that I exported the sample format & updated country, zone values with shipping amount. Finally imported & saved the configuration and cleared cache.
But when I add to the product & checked the Cart & Checkout page but still the table rate value as 0 even I have selected proper Country & State.
Here is my imported csv file.
Can anyone let me know what's the issue?
magento2 shipping-methods shopping-cart table-rates shipping-tax
add a comment |
I am using the Magento 2.3.1 for my store. I just only enabled Table Rate shipping method with Price Vs Destination.
After that I exported the sample format & updated country, zone values with shipping amount. Finally imported & saved the configuration and cleared cache.
But when I add to the product & checked the Cart & Checkout page but still the table rate value as 0 even I have selected proper Country & State.
Here is my imported csv file.
Can anyone let me know what's the issue?
magento2 shipping-methods shopping-cart table-rates shipping-tax
add a comment |
I am using the Magento 2.3.1 for my store. I just only enabled Table Rate shipping method with Price Vs Destination.
After that I exported the sample format & updated country, zone values with shipping amount. Finally imported & saved the configuration and cleared cache.
But when I add to the product & checked the Cart & Checkout page but still the table rate value as 0 even I have selected proper Country & State.
Here is my imported csv file.
Can anyone let me know what's the issue?
magento2 shipping-methods shopping-cart table-rates shipping-tax
I am using the Magento 2.3.1 for my store. I just only enabled Table Rate shipping method with Price Vs Destination.
After that I exported the sample format & updated country, zone values with shipping amount. Finally imported & saved the configuration and cleared cache.
But when I add to the product & checked the Cart & Checkout page but still the table rate value as 0 even I have selected proper Country & State.
Here is my imported csv file.
Can anyone let me know what's the issue?
magento2 shipping-methods shopping-cart table-rates shipping-tax
magento2 shipping-methods shopping-cart table-rates shipping-tax
edited Jun 21 at 6:54
Shorabh
1,0245 silver badges15 bronze badges
1,0245 silver badges15 bronze badges
asked Jun 21 at 3:12
MeskMesk
778 bronze badges
778 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I finally figured out the issue.
The code to check the shipping method to show is in the template file vendor/magento/module-checkout/view/frontend/web/template/shipping.html
...
<div class="checkout-shipping-method">
<div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div>
<!-- ko foreach: getRegion('before-shipping-method-form') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
<div id="checkout-step-shipping_method"
class="step-content"
data-role="content"
role="tabpanel"
aria-hidden="false">
<!-- ko if: rates().length -->
<form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingInformation" novalidate="novalidate">
<div id="checkout-shipping-method-load">
...
</form>
<!-- /ko -->
<!-- ko ifnot: rates().length > 0 --><div class="no-quotes-block"><!-- ko i18n: 'Sorry, no quotes are available for this order at this time'--><!-- /ko --></div><!-- /ko -->
</div>
</div>
...
See Below code
<!-- ko if: rates().length -->
Above code review rate avaliable or not . If have then show shipping method and rate
The available rates is getting from the view vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
/**
* Shipping Method View
*/
rates: shippingService.getShippingRates(),
The logic Magento 2 to set shipping rates is beyond this single post, but you can check more details in
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
Focus on lines related to
shippingService.setShippingRates(...)
My case, there was an extension that overrides the shipping view of default Magento
vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
=>
it is overridden by another extension
And in the code of that extension, it checks one more condition to show only shipping methods it allows, so the default Flat Rate returned but it is not in the allowed shipping method, then nothing showed!
What's your solution?
– Mesk
Jun 21 at 6:36
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f279089%2fmagento-2-table-rate-shipping-method-not-showing-in-cart-checkout-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I finally figured out the issue.
The code to check the shipping method to show is in the template file vendor/magento/module-checkout/view/frontend/web/template/shipping.html
...
<div class="checkout-shipping-method">
<div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div>
<!-- ko foreach: getRegion('before-shipping-method-form') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
<div id="checkout-step-shipping_method"
class="step-content"
data-role="content"
role="tabpanel"
aria-hidden="false">
<!-- ko if: rates().length -->
<form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingInformation" novalidate="novalidate">
<div id="checkout-shipping-method-load">
...
</form>
<!-- /ko -->
<!-- ko ifnot: rates().length > 0 --><div class="no-quotes-block"><!-- ko i18n: 'Sorry, no quotes are available for this order at this time'--><!-- /ko --></div><!-- /ko -->
</div>
</div>
...
See Below code
<!-- ko if: rates().length -->
Above code review rate avaliable or not . If have then show shipping method and rate
The available rates is getting from the view vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
/**
* Shipping Method View
*/
rates: shippingService.getShippingRates(),
The logic Magento 2 to set shipping rates is beyond this single post, but you can check more details in
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
Focus on lines related to
shippingService.setShippingRates(...)
My case, there was an extension that overrides the shipping view of default Magento
vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
=>
it is overridden by another extension
And in the code of that extension, it checks one more condition to show only shipping methods it allows, so the default Flat Rate returned but it is not in the allowed shipping method, then nothing showed!
What's your solution?
– Mesk
Jun 21 at 6:36
add a comment |
I finally figured out the issue.
The code to check the shipping method to show is in the template file vendor/magento/module-checkout/view/frontend/web/template/shipping.html
...
<div class="checkout-shipping-method">
<div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div>
<!-- ko foreach: getRegion('before-shipping-method-form') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
<div id="checkout-step-shipping_method"
class="step-content"
data-role="content"
role="tabpanel"
aria-hidden="false">
<!-- ko if: rates().length -->
<form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingInformation" novalidate="novalidate">
<div id="checkout-shipping-method-load">
...
</form>
<!-- /ko -->
<!-- ko ifnot: rates().length > 0 --><div class="no-quotes-block"><!-- ko i18n: 'Sorry, no quotes are available for this order at this time'--><!-- /ko --></div><!-- /ko -->
</div>
</div>
...
See Below code
<!-- ko if: rates().length -->
Above code review rate avaliable or not . If have then show shipping method and rate
The available rates is getting from the view vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
/**
* Shipping Method View
*/
rates: shippingService.getShippingRates(),
The logic Magento 2 to set shipping rates is beyond this single post, but you can check more details in
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
Focus on lines related to
shippingService.setShippingRates(...)
My case, there was an extension that overrides the shipping view of default Magento
vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
=>
it is overridden by another extension
And in the code of that extension, it checks one more condition to show only shipping methods it allows, so the default Flat Rate returned but it is not in the allowed shipping method, then nothing showed!
What's your solution?
– Mesk
Jun 21 at 6:36
add a comment |
I finally figured out the issue.
The code to check the shipping method to show is in the template file vendor/magento/module-checkout/view/frontend/web/template/shipping.html
...
<div class="checkout-shipping-method">
<div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div>
<!-- ko foreach: getRegion('before-shipping-method-form') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
<div id="checkout-step-shipping_method"
class="step-content"
data-role="content"
role="tabpanel"
aria-hidden="false">
<!-- ko if: rates().length -->
<form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingInformation" novalidate="novalidate">
<div id="checkout-shipping-method-load">
...
</form>
<!-- /ko -->
<!-- ko ifnot: rates().length > 0 --><div class="no-quotes-block"><!-- ko i18n: 'Sorry, no quotes are available for this order at this time'--><!-- /ko --></div><!-- /ko -->
</div>
</div>
...
See Below code
<!-- ko if: rates().length -->
Above code review rate avaliable or not . If have then show shipping method and rate
The available rates is getting from the view vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
/**
* Shipping Method View
*/
rates: shippingService.getShippingRates(),
The logic Magento 2 to set shipping rates is beyond this single post, but you can check more details in
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
Focus on lines related to
shippingService.setShippingRates(...)
My case, there was an extension that overrides the shipping view of default Magento
vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
=>
it is overridden by another extension
And in the code of that extension, it checks one more condition to show only shipping methods it allows, so the default Flat Rate returned but it is not in the allowed shipping method, then nothing showed!
I finally figured out the issue.
The code to check the shipping method to show is in the template file vendor/magento/module-checkout/view/frontend/web/template/shipping.html
...
<div class="checkout-shipping-method">
<div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div>
<!-- ko foreach: getRegion('before-shipping-method-form') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
<div id="checkout-step-shipping_method"
class="step-content"
data-role="content"
role="tabpanel"
aria-hidden="false">
<!-- ko if: rates().length -->
<form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingInformation" novalidate="novalidate">
<div id="checkout-shipping-method-load">
...
</form>
<!-- /ko -->
<!-- ko ifnot: rates().length > 0 --><div class="no-quotes-block"><!-- ko i18n: 'Sorry, no quotes are available for this order at this time'--><!-- /ko --></div><!-- /ko -->
</div>
</div>
...
See Below code
<!-- ko if: rates().length -->
Above code review rate avaliable or not . If have then show shipping method and rate
The available rates is getting from the view vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
/**
* Shipping Method View
*/
rates: shippingService.getShippingRates(),
The logic Magento 2 to set shipping rates is beyond this single post, but you can check more details in
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
vendor/magento/module-checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
Focus on lines related to
shippingService.setShippingRates(...)
My case, there was an extension that overrides the shipping view of default Magento
vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
=>
it is overridden by another extension
And in the code of that extension, it checks one more condition to show only shipping methods it allows, so the default Flat Rate returned but it is not in the allowed shipping method, then nothing showed!
answered Jun 21 at 5:21
ShorabhShorabh
1,0245 silver badges15 bronze badges
1,0245 silver badges15 bronze badges
What's your solution?
– Mesk
Jun 21 at 6:36
add a comment |
What's your solution?
– Mesk
Jun 21 at 6:36
What's your solution?
– Mesk
Jun 21 at 6:36
What's your solution?
– Mesk
Jun 21 at 6:36
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f279089%2fmagento-2-table-rate-shipping-method-not-showing-in-cart-checkout-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown