• Resolved thePixelPixie

    (@yourbusybee)


    I was trying to update my User information and realized that the Nickname field had disappeared. After disabling plugins, and starting to re-enable them, it seems that this is the plugin making it disappear. Any ideas why?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback! This change is part of the Enhanced UI module of ACF Extended. In an effort to standardize Posts / Users & Terms UI, the user nickname input has been moved to the top “Title” input. See screenshot: https://i.imgur.com/vK0NPQ5.png

    If you don’t like that UI and would like to get the native WP User UI, you can use the following code:

    add_action('acf/init', 'my_acfe_modules');
    function my_acfe_modules(){
    
        // Disable Enhanced UI
        acf_update_setting('acfe/modules/ui', false);
        
    }
    

    Hope it helps!

    Have a nice day.

    Regards.

    Thread Starter thePixelPixie

    (@yourbusybee)

    This worked great! Thank you so very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing Nickname field’ is closed to new replies.