Magento 2 – How to Override Base View File

frontendmagento2phtmltemplate

I'm currently developing a Magento 2.0 theme. I'm trying to change the behaviour of the Tax class on the frontend. The file I need to change is located in app/Code/Magento/Tax/view/base/templates/pricing/adjustment.phtml.

How can I override this view from my Magento theme?

Thanks

Best Answer

Create file with name app/design/frontend/[VendorName]/[theme]/Magento_Tax/templates/pricing/adjustment.phtml.

base folder it's default fallbacks for all arias and used to share resources across of areas

Related Topic