Title: Remove Custom Type from Post
Last modified: October 1, 2024

---

# Remove Custom Type from Post

 *  Resolved [hozayx](https://wordpress.org/support/users/hozayx/)
 * (@hozayx)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/remove-custom-type-from-post/)
 * 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](https://wordpress.org/support/users/gripgrip/)
 * (@gripgrip)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/remove-custom-type-from-post/#post-18047849)
 * Hi [@hozayx](https://wordpress.org/support/users/hozayx/),
 * The WPCode Page Scripts metabox can be disabled from the screen settings like
   any other metabox [https://a.supportally.com/i/K2ky94](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](https://wordpress.org/support/users/hozayx/)
 * (@hozayx)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/remove-custom-type-from-post/#post-18047899)
 * Was not aware of that feature in Gutenberg. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Custom Type from Post’ is closed to new replies.

 * ![](https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516)
 * [WPCode - Insert Headers and Footers + Custom Code Snippets - WordPress Code Manager](https://wordpress.org/plugins/insert-headers-and-footers/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/insert-headers-and-footers/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/insert-headers-and-footers/)
 * [Active Topics](https://wordpress.org/support/plugin/insert-headers-and-footers/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/insert-headers-and-footers/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/insert-headers-and-footers/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [hozayx](https://wordpress.org/support/users/hozayx/)
 * Last activity: [1 year, 8 months ago](https://wordpress.org/support/topic/remove-custom-type-from-post/#post-18047899)
 * Status: resolved