Hello Magento Friends,
Today I am here with a new Magento 2 solution. Today it’s about How to Create a Password or an Encrypted Field in Magento 2 System Configuration.
You might need to add a password field in the system configuration where the input type is abstruse, meaning the data is not shown as text. To create a password type field in the system configuration, perform the below step.
Contents
Step 1: First, create a system.xml file at the below path
app\code\Vendor\Extension\etc\adminhtml
We use the “obscure” field type and Magento\Config\Model\Config\Backend\Encrypted as the backend_model.
In the file app/code/Vendor/Extension/etc/adminhtml/system.xml add a new field as below:
<field id='encrypted_password' translate='label' type='obscure' sortOrder='3' showInDefault='1' showInWebsite='1' showInStore='1'> <label>Password</label> <backend_model>Magento\Config\Model\Config\Backend\Encrypted</backend_model> </field>
Now, you can find that the password field is added to the admin system configuration with encrypted input. When you input any data, it will be shown as dots.
This way, you can add a password-like field or an encrypted field in Magento 2 system configuration.
Moreover, you can create the following fields in the Magento 2 system configuration:
Also, perform the following actions on Magento 2 system configuration field:
Share this tutorial with your friends and stay updated for more!
Happy Coding!
In modern web development, seamless navigation and state management are crucial for delivering a smooth…
Magento Open Source 2.4.8 beta version released on October 8, 2024. The latest release of…
Hello Magento Friends, Creating catalog price rules programmatically in Magento 2 can be a valuable…
As the world of eCommerce continues to thrive, Shopify has become one of the most…
Shopify Remix is an innovative framework that provides a streamlined experience for building fast, dynamic,…
Building a successful eCommerce store requires expertise, and for many businesses, Shopify has become the…