Created
August 16, 2021 05:29
-
-
Save rafiahmedd/022c4fcd1e867a4a371058b1c03bd4dd to your computer and use it in GitHub Desktop.
Add more name prefix in Fluent CRM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('fluentcrm_contact_name_prefixes',function ($title){ | |
$newTitles = ['Ahmed','Md']; | |
return array_merge($title,$newTitles); | |
},10,1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, Craig