Magento 2 comes with default shipping methods. But, if that’s not suitable to site owner then he/she can uncheck it.
Let’s see, how?
If you ever want to unchecked default shipping method at checkout or cart estimated shipping block, then it’s not necessary to create a module.
Of course, you can perform this task by creating a module. But, here we are showing you alternate method to do the task.
First step is to copy the js file checkout-data-resolver.js from vendor\magento\module-checkout\view\frontend\web\js\model
to app\design\frontend\Namespace\ThemeName\Magento_Checkout\web\js\model.
And then just find selectShippingMethodAction(ratesData[0]); and replace it to selectShippingMethodAction(null); in this function: resolveShippingRates
After doing such procedure you need to clear static content and cache.
That’s it.
If you want get query string params in controller file,...
Create di.xml and add the below code Magemonkey/Redirect/etc/frontend/di.xml [crayon-62847477b2d68670189711/] Create...
You can try below code to change local date to...
Step 1: First you need to add registration.php file in...
Step1 : Override message.js in current theme file on the...