Tag: Magento
-
A Step-by-Step Guide on Applying Magento 2 Security Patches
The blog post outlines the step-by-step process to apply security patches on a Magento 2 e-commerce store. It includes steps from creating a backup, reviewing the release notes, downloading and uploading patch files, running the patches through SSH, clearing cache, and testing the store. Frequently applying these patches is vital for a secure shopping environment.
-
Magento 2 Remove Phone Number field from checkout page
In Magento 2.2 admin panel, there is a facility to disable Phone number field. But what about in Magento 2.0? You can do via code. Please follow the steps. Please take a back up of checkout_index_index.xml (vendor/magento/module-checkout/view/frontend/layout/) Copy checkout_index_index.xml to app/design/frontend/<vendor-name>/<theme-name>/Magento_Checkout/layout/ Add/replace following code in checkout_index_index.xml <item name=”telephone” xsi:type=”array”> <item name=”visible” xsi:type=”boolean”>false</item> <item name=”config”…
