• Resolved anonmeimei

    (@anonmeimei)


    Before, the PublishPress Authors metabox used to replace the default WordPress metabox… But now, I’m seeing TWO metaboxes on each post type where I have PP Authors enabled. It looks really ugly. Please add an update where you hide the default wordpress metabox: https://imgur.com/a/FjRg0iu

    Note: this shows up on both Classic and Gutenberg editor

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter anonmeimei

    (@anonmeimei)

    Okay, looks like the extra metabox was actually added by the ACF Extended plugin. Not a problem with PublishPress

    Hello,

    ACF Extended developer here! You guessed it right, the Ajax Author Box is an ACF Extended feature. If you would like to disable it, you can simply add this code in your functions.php file:

    add_action('acfe/init', 'my_acfe_modules');
    function my_acfe_modules(){
        
        // Disable Ajax Author box
        acfe_update_setting('modules/author', false);
        
    }
    

    This will revert the authorbox back to the native WordPress behavior. See feature documentation: https://www.acf-extended.com/features/wordpress/ajax-author-box

    Hope it helps!

    Have a nice day!

    Regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Two author metaboxes showing up’ is closed to new replies.