Title: NacPress's Replies | WordPress.org

---

# NacPress

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] New Idea is not editable when used in Customizr](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/)
 *  [NacPress](https://wordpress.org/support/users/nacpress/)
 * (@nacpress)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/#post-6058954)
 * By the way, you have to put this code in the functions.php
    Create a child theme
   to make the changes [http://doc.presscustomizr.com/customizr/creating-child-theme-customizr/](http://doc.presscustomizr.com/customizr/creating-child-theme-customizr/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] New Idea is not editable when used in Customizr](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/)
 *  [NacPress](https://wordpress.org/support/users/nacpress/)
 * (@nacpress)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/#post-6058953)
 * Ok a little bug in the code
 * I realize that no mater if you set in the Customizr settings to see FULL content
   or not because I don’t use the variable recovered $bool.
 * But the idea is ok 😉
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] New Idea is not editable when used in Customizr](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/)
 *  [NacPress](https://wordpress.org/support/users/nacpress/)
 * (@nacpress)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/#post-6058952)
 * Ok
    I get a workaround.
 * Create a filer
    I change the code from the page to work with our problem
 * [http://presscustomizr.com/snippet/display-full-posts-content-in-specific-contexts/](http://presscustomizr.com/snippet/display-full-posts-content-in-specific-contexts/)
 *     ```
       /*********************************************
       * Show wp-ideas-stream (add idea) post in full length
       *
       * In the customizr options set view page in FULL content
       * and change the behaviour here only for "Noticias"
       *
       * http://presscustomizr.com/snippet/display-full-posts-content-in-specific-contexts/
       **********************************************/
       <?php
          add_filter('tc_show_excerpt' , 'show_post_in_full_length');
          function show_post_in_full_length($bool)
          {
             $page = 'noticias';
             $realPage = get_query_var('pagename');
             if ( $realPage == $page )
             {
                return true;
             }
             else
             {
                return false; // Full content
             }
          }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] New Idea is not editable when used in Customizr](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/)
 *  [NacPress](https://wordpress.org/support/users/nacpress/)
 * (@nacpress)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/new-idea-is-not-editable-when-used-in-customizr/#post-6058951)
 * In the Customizr configuration, Content Option, Post List: Blog archive
    Change
   the “Select the length of post in list ….” to Full content
 * The problem now is that the post list is a nightmare because the post list is
   a page with all the post with the full content displayed instead a brief summary

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