Skip to content

Instantly share code, notes, and snippets.

@rafiahmedd
Created August 16, 2021 05:29
Show Gist options
  • Save rafiahmedd/022c4fcd1e867a4a371058b1c03bd4dd to your computer and use it in GitHub Desktop.
Save rafiahmedd/022c4fcd1e867a4a371058b1c03bd4dd to your computer and use it in GitHub Desktop.
Add more name prefix in Fluent CRM
add_filter('fluentcrm_contact_name_prefixes',function ($title){
$newTitles = ['Ahmed','Md'];
return array_merge($title,$newTitles);
},10,1);
@cadonovan
Copy link

Thanks. This works well using Code Snippets plugin. I have been looking for something like this for a while.
Regards
Craig

@rafiahmedd
Copy link
Author

Thanks. This works well using Code Snippets plugin. I have been looking for something like this for a while. Regards Craig

Thanks, Craig

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment