Title: gustmf's Replies | WordPress.org

---

# gustmf

  [  ](https://wordpress.org/support/users/gustmf/)

 *   [Profile](https://wordpress.org/support/users/gustmf/)
 *   [Topics Started](https://wordpress.org/support/users/gustmf/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gustmf/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gustmf/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gustmf/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gustmf/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gustmf/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Edition Box won't show](https://wordpress.org/support/topic/edition-box-wont-show/)
 *  Thread Starter [gustmf](https://wordpress.org/support/users/gustmf/)
 * (@gustmf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/edition-box-wont-show/#post-4190568)
 * We are using the Advanced Custom Fields plugin. Disabling it returns the Editor
   to our custom post types. Enabling it back just hides it away again…
    It might
   be some incompatibility at some level 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Edition Box won't show](https://wordpress.org/support/topic/edition-box-wont-show/)
 *  Thread Starter [gustmf](https://wordpress.org/support/users/gustmf/)
 * (@gustmf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/edition-box-wont-show/#post-4190550)
 * I had already verified that. Editor was already checked.
    Just to make sure I
   even tried to uncheck Editor and than check it again, to no use. The editor won’t
   show when editing the post. I used the BETA feature to get the code that I reproduce
   here:
 *     ```
       add_action('init', 'cptui_register_my_cpt');
       function cptui_register_my_cpt() {
       register_post_type('conteudo', array(
       'label' => '__('Conteúdo')',
       'description' => '',
       'public' => 'true',
       'show_ui' => 'true',
       'show_in_menu' => 'true',
       'capability_type' => 'post',
       'hierarchical' => 'true',
       'rewrite' => array('slug' => 'conteudo', 'with_front' => '1'),
       'query_var' => 'true',
       'has_archive\' => 'true',
       'exclude_from_search' => 'false',
       'menu_position' => '5',
       'supports' => array(''title','editor','excerpt','revisions','thumbnail','author','page-attributes','),
       taxonomies' => array(''category','post_tag','),
       'labels' => 'array (
         'name' => 'Conteúdo',
         'singular_name' => 'Conteúdo',
         'menu_name' => 'Conteúdo',
         'add_new' => 'Add Conteúdo',
         'add_new_item' => 'Add New Conteúdo',
         'edit' => 'Edit',
         'edit_item' => 'Edit Conteúdo',
         'new_item' => 'New Conteúdo',
         'view' => 'View Conteúdo',
         'view_item' => 'View Conteúdo',
         'search_items' => 'Search Conteúdo',
         'not_found' => 'No Conteúdo Found',
         'not_found_in_trash' => 'No Conteúdo Found in Trash',
         'parent' => 'Parent Conteúdo',
       )'
       ) ); }
       ```
   
 * _[Moderator Note: Please post code & markup between backticks or use the code
   button. Your posted code may now have been permanently damaged by the forum’s
   parser.]_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Edition Box won't show](https://wordpress.org/support/topic/edition-box-wont-show/)
 *  Thread Starter [gustmf](https://wordpress.org/support/users/gustmf/)
 * (@gustmf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/edition-box-wont-show/#post-4190533)
 * That’s the problem, the editor isn’t there also. Neither media button, neither
   editor 🙁
    They used to be there before updating to WordPress 3.6.1 and CPT UI
   to 0.8 . Now we see, for Regular posts:
 * – Permanent link: xxx [change permanent link] [view post];
    – [Add Media] button–
   Editor [Visual] [Text] – WordPress Yost SEO (another plugin)
 * for CPT UI posts:
 * – Permanent link: xxx [change permanent link] [view post];
    – WordPress Yost 
   SEO (another plugin)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Edition Box won't show](https://wordpress.org/support/topic/edition-box-wont-show/)
 *  Thread Starter [gustmf](https://wordpress.org/support/users/gustmf/)
 * (@gustmf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/edition-box-wont-show/#post-4190531)
 * I’m not an WordPress expert, sorry if I don’t know the proper terms..
    By “edition
   box” I mean the very basic area where you can see and edit the post text, be 
   it in a [Visual] representation (what you actually see) or in [Text} representation(
   the html code). It includes buttons for changing character/paragraph features
   such as bold, italic, size, or for creating links, aligning text, cut/paste and
   so on… They are working as expected for regular posts but not in CPT posts.
 * We have 2 CPT:
 * Action: Delete/Edit/Get Code; Name: conteudo; Label: Conteúdo; Public: true; 
   Show UI: true; Hierarchical: true; Rewrite: true; Rewrite slug: conteudo; Total
   Published: 107; Total Drafts: 14; Supports: title, editor, excerpt, revisions,
   thumbnail, author, page-attributes
 * Action: Delete/Edit/Get Code; Name: cedoc; Label: Centro de Mídia; Public: true;
   Show UI: true; Hierarchical: false; Rewrite: true; Rewrite slug: cedoc; Total
   Published: 616; Total Drafts: 8; Supports: title, editor, excerpt, trackbacks,
   custom-fields, comments, revisions, thumbnail, author, page-attributes
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Edit code without visual editor](https://wordpress.org/support/topic/edit-code-without-visual-editor/)
 *  [gustmf](https://wordpress.org/support/users/gustmf/)
 * (@gustmf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/edit-code-without-visual-editor/#post-4112713)
 * I’m not sure if I have the same problem, but it is similar for sure. We updated
   WordPress to 3.6.1 and CPT UI to 0.8 and ever since we are able to edit regular
   posts but not customized posts.
    When in a regular post I click in “edit” and
   the page for edition is show with these options: – Permanent link: xxx [change
   permanent link] [view post]; – [Add Media] – Edition Box {Visual] [Text] – WordPress
   Yost SEO (another plugin) When in a CPT UI post I click in “edit” and the page
   for edition is show with these options: – Permanent link: xxx [change permanent
   link] [view post]; – WordPress Yost SEO (another plugin) Note that neither Add
   Media/Edition Box are shown for customized posts. What have we done wrong?

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