Users with same first and last name


Home Forums Front End PM PRO Users with same first and last name

This topic is: Not Resolved
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #13647
    Larry Cottle
    Participant

    How can I differentiate sending a single message where users have the same first and last name?

    LJC

    #13685
    Shamim Hasan
    Keymaster
    #13696
    Larry Cottle
    Participant

    No.

    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

    #13698
    Shamim Hasan
    Keymaster

    This 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_name hook to change which name will be used.

    #13700
    Larry Cottle
    Participant

    If I have three users with same display name, how do i know the one to pick from the list?

    LJC

    #13708
    Shamim Hasan
    Keymaster

    add 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.

Viewing 6 posts - 1 through 6 (of 6 total)

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.