Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @michaelwilliamautin

    You can try adding a new Account tab instead and then add new form fields there. Please see this tutorial.

    Regards,

    @michaelwilliamautin

    You can try this code snippet for changing the nickname on the UM Account page.

    Install by adding the code snippet to your child-theme’s functions.php file or use the “Code Snippets” plugin.

    add_filter( 'um_account_tab_general_fields', 'um_account_tab_general_fields_custom', 10, 2 );
    
    function um_account_tab_general_fields_custom( $args, $shortcode_args ) {
    
        return str_replace( 'last_name', 'last_name,nickname', $args );
    }
    Thread Starter michaelwilliamautin

    (@michaelwilliamautin)

    @aswingiri Thank you. You might want to edit the comment. The link is missing.
    However I got my solution.

    @missveronicatv

    Thank you that was just what I needed. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Allow user to change Nickname / Display Name’ is closed to new replies.