I want to completely disable shipping method while placing an order and add a custom shipping fee in magento 2. Can anyone tell me how to disable shipping method?
I want to completely disable shipping method while placing an order and add a custom shipping fee in magento 2. Can anyone tell me how to disable shipping method?
4
Answers
To disable any shipping method like flat rate: Goto Admin > Store > Configuration > Click on Shipping methods under Sales tab, it will show you all methods. Here you can disabled any method by setting “Enabled” option to No and click save config button.
I think you need to use flat shipping method and set the fee to zero. Then you need to create a script to autoselect flat rate as shipping method as magento does not select a shipping method.
Lastly, a front-end guy can hide the shipping part on the front end. A shipping method is crucial to an order in Magento. You would need one if you do not want to make core changes to magento.
The following should help to select a shipping method:
https://magento.stackexchange.com/a/161473
You can simply set all products with zero weight.
This will let all products into virtual product.
And system will auto skip the shipping step.
As you want to remove shipping method section completely but magento must need to assign one specific shipping method.
Please follow following steps to remove shipping method completely and assign automatically specific shipping method (magento 2.3.1)
Override these two files to your theme folder
On shipping.html file, remove entire code inside form except actions-toolbar div as it use for Next button.
So your shipping.html file will be
then, run s:s:d coomand and check checkout page, shipping method section should be removed.
Now, as magento must require shipping method, we can assign static shipping methods from checkout-data-resolver.js file
On checkout-data-resolver.js file, add following code on resolveShippingRates function
You can auto assign shipping method like ratesData[0], ratesData[1],ratesData[2] as per requirement