• Resolved smartwebcanada

    (@smartwebcanada)


    Hi,
    How can I add a greeting text like hello or hi before the name. I tried adding it on the Display Name Custom Field(s) but its not working. I put Hello first_name but didnt work…

    Any advice how?
    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @smartwebcanada

    You can try this code snippet in your theme’s functions.php file or use the Code Snippets plugin to run the code:

    add_filter("um_user_display_name_filter",function( $value, $user_id ){
    
        if( um_is_core_page('user') ){
            return "Hi, ".$value;
        }
    
        return $value;
    
    },10, 2);

    Regards,

    Thread Starter smartwebcanada

    (@smartwebcanada)

    Thank you…
    Actually, I found one solution I think while scanning your docs…
    I use this shortcode and seems to be working fine [um_loggedin]Hello {first_name}[/um_loggedin]

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @smartwebcanada

    Thanks for letting us know how you found the solution for your requirement.

    I am closing this thread now.

    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Add Greetings before name’ is closed to new replies.