• Resolved hozayx

    (@hozayx)


    I noticed that the custom post type/fields are in the Post editor, and I wanted to get rid of it. The settings page of the plugin did not have it, so not sure. To be specific, it’s the “WPCode Page Scripts” is what I want to remove.

    Thank you!

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

    (@gripgrip)

    Hi @hozayx,

    The WPCode Page Scripts metabox can be disabled from the screen settings like any other metabox https://a.supportally.com/i/K2ky94 . 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 PHP 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);
    Thread Starter hozayx

    (@hozayx)

    Was not aware of that feature in Gutenberg. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.