How can i mask the phone numbers after creating any module, For example it should show * for every digits after saving. How can i achieve thiis?
Announcement
Collapse
No announcement yet.
How to mask the phone numbers in all module
Collapse
X
-
You can't with the GUI. You might be able to create "fake" one by duplicate the data into some hidden field. And replace the number with ****
If you know coding, you can do it yourself.
There is a paid extension that can do this if you don't want to do it yourself.
Last method is to make a Feature Request and pray for yuri blessing.
-
Originally posted by Ashif Malayil View PostCan you please explain the process of first option, Can you share the code?
Create 2 field:
Field 1 = passwordType
Field 2 = passwordReal
Create formula
ifThen(passwordType==null, "", passwordReal=passwordType);
if(passwordReal!=null, string\replace(passwordType,'abcdefg','*"
These are just a concept, you have to think of a plan
Comment
Comment