Magento 2.1.3 – Replace $0.00 with Free for Free Shipping

free-shippingmagento-2.1.3shipping-methodsshopping-cart

I am trying to customize the shopping cart page, If customer select Free Shipping Shipping Method needs to replace Free instead of $0.00. For this stuff, I followed steps.

enter image description here

Customized the root/vendor/magento/module-checkout/view/frontend/web/template/cart/totals/shipping.html, but it's not affecting.

Can you please suggest me how to do this.

Best Answer

You should not change the root/vendor files. Try to create a module/theme to change the required file: http://devdocs.magento.com/guides/v2.2/architecture/archi_perspectives/components/modules/mod_intro.html

When i tried to change that area i had to overried the file root/vendor/magento/module-tax/view/frontend/web/template/checkout/cart/totals/shipping.html

Related Topic