Home › Forums › Front End PM PRO › Users with same first and last name
- This topic has 5 replies, 2 voices, and was last updated 7 years, 7 months ago by Shamim Hasan.
- AuthorPosts
- April 24, 2018 at 8:37 pm #13647Larry CottleParticipant
How can I differentiate sending a single message where users have the same first and last name?
LJC
April 25, 2018 at 8:39 pm #13685Shamim HasanKeymasterIs your another topic https://sp-test1.arogga.co/support/topic/new-message-form-shortcode-autopopulate-to-specific-user/ solve this topic also?
April 25, 2018 at 10:22 pm #13696Larry CottleParticipantNo.
FEP uses first and last name to identify recipients. The directory lists users by first and last name. The search box in mew message to: field lists recipients by first and last name.
When creating new message from message menu, (to: box “type user name”), search will return first & last name of recipient. Because I have some users with same first and last name, both users appear in search box with no way to tell which one to choose.
In order to know which one to choose I have to search by username or nicename. Which means I have to know the username or nicename beforehand.
This is confusing because the person sending a message only knows the recipient by first and last name.
A username/nicename column in directory would help solve problem. All FEP users should know username/nicename associated with first & last name.
Thanks,
LJC
April 25, 2018 at 11:12 pm #13698Shamim HasanKeymasterThis plugin uses “Display Name” all the places. Please go to Dashboard > Users > Your Profile > Name to see the difference of names. Display name is made to show publicly and this plugin use that.
Also You can use
fep_filter_show_which_namehook to change which name will be used.April 25, 2018 at 11:56 pm #13700Larry CottleParticipantIf I have three users with same display name, how do i know the one to pick from the list?
LJC
April 26, 2018 at 12:51 am #13708Shamim HasanKeymasteradd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_show_which_name', function( $which ){ return 'user_login'; });This will show user_login instead of display name.
- AuthorPosts
You need to purchase ‘Front End PM PRO’ to create topic in this support forum.
If you already purchased ‘Front End PM PRO’ please LOGIN.