• Resolved authentico

    (@authentico)


    Need a toggle in the Settings page to disable the WPCode metabox being added to all the editor pages in wp-admin. Not needed and undesirable behaviour.

Viewing 1 replies (of 1 total)
  • Plugin Author Mircea Sandu

    (@gripgrip)

    Hi @authentico,

    The WPCode metabox can be disabled from the screen settings like any other metabox and we specifically made it collapsed by default all the time so that it will not interfere with the editing experience.

    You can also create a snippet using WPCode to deregister the metabox completely if you wish using this code:

    add_action( 'add_meta_boxes', function( $post_type ) {
    	remove_meta_box( 'wpcode-metabox-snippets', $post_type, 'normal' );
    }, 150);
Viewing 1 replies (of 1 total)

The topic ‘Feature request: Setting to disable WPCode metabox’ is closed to new replies.