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?
How to mask the phone numbers in all module
Collapse
X
-
Tags: None
-
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. -
-
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 planComment
Comment