Loading…

Magento 2 – How to remove the autocomplete on forms on checkout

If you need to remove the autocomplete on any form on checkout you need to overwrite the file that contains the form html and add the autocomplete=”off” attribute.   For example for the shipping address form you need to overwrite this file: vendor/magento/module-checkout/view/frontend/web/template/shipping-address/form.html   And add the autocomplete=”off” attribute like this:   <form autocomplete=”off” class=”form […]

Magento 2 – How to create a new theme

The first thing that you should know when you start a Magento 2 project is that you shouldn’t modify the out of the box Magento files. These are located in the “vendor” folder. If you use git, the “vendor” folder is included in .gitignore file. So if we cannot modify the vendor files, we need to […]