Title: Integrating comic easel plugin
Last modified: August 22, 2016

---

# Integrating comic easel plugin

 *  [30seven](https://wordpress.org/support/users/30seven/)
 * (@30seven)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/)
 * I’d like to use Customizr as a base for my webcomic. Has anyone tried integrating
   the Comic Easel plugin into Customizr?

Viewing 15 replies - 1 through 15 (of 50 total)

1 [2](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/4/?output_format=md)
[→](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/2/?output_format=md)

 *  [Frumph](https://wordpress.org/support/users/frumph/)
 * (@frumph)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670076)
 * I have .. and i’m the dev of Comic Easel, can help you out with it if you like.
 *  [atardiff](https://wordpress.org/support/users/atardiff/)
 * (@atardiff)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670131)
 * Hi Frumph,
 * I’d like to integrate Comic Easel into Customizr, too. You can see what I have
   so far at johnargentcomic.com. I’m using a child theme. I’d like to put Comic
   Easel on the front page right below the header/menu, and above the links to the
   other pages.
 * I’ve read through the instructions on your site but I’m afraid I’m rather lost
   when trying to figure out what to do for this particular theme . . .
 * Thanks!
 *  Thread Starter [30seven](https://wordpress.org/support/users/30seven/)
 * (@30seven)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670134)
 * Sorry, I was on vacation for the past week.
 * Yeah, I’m looking at switching themes to customizr. I just have a quick temporary
   site set up after my original got hacked and I had to reinstall wordpress.
 * The main questions I have are:
 * – Can I create the site, so that my comic doesn’t appear on the homepage, and
   only on a page designated for it?
 * – Can I have the blog separate from the comic on a different page? (right now
   it shows up right underneath the comic, and I hate that. Is it changeable?)
 * Thanks!
 *  [atardiff](https://wordpress.org/support/users/atardiff/)
 * (@atardiff)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670135)
 * And as for me, I’m just trying to get the comic to display on the main page below
   the header, with the comic blog below the comic. I managed to place it in the
   right spot but it looks all wonky and made wonky stuff appear all over the page.
 *  Thread Starter [30seven](https://wordpress.org/support/users/30seven/)
 * (@30seven)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670137)
 * Where did you end up inserting the code? And what code did you insert for the
   comic to display on the main page?
 *  [atardiff](https://wordpress.org/support/users/atardiff/)
 * (@atardiff)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670141)
 * 30seven, I tried to follow this guide: [http://comiceasel.com/2014/05/14/editing-a-theme-to-support-comic-easel/](http://comiceasel.com/2014/05/14/editing-a-theme-to-support-comic-easel/)
 * I inserted the code into index.php. I inserted it right below <div id=”main-wrapper”.
 * So it looks something like this:
 *     ```
       <?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?>
       <div id="main-wrapper" class="<?php echo apply_filters( 'tc_main_wrapper_classes' , 'container' ) ?>">
       <?php do_action('comic-area'); ?>
           <?php do_action('comic-blog-area'); ?>
   
           <?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?>
       ```
   
 * The problem is that the comic and blog don’t display right. The comic isn’t centered
   with the nav bar, and the as soon as the code is introduced all sorts of other
   problems appear. The button below the featured page links says the title of featured
   page rather than “Read More,” and “>Read more »” appears NEXT to the button. 
   Also, the title of each featured page appears over its picture.
 * Let me know if this happens to you too when you add the code.
 *  Thread Starter [30seven](https://wordpress.org/support/users/30seven/)
 * (@30seven)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670142)
 * I was playing with it, trying to add the code last night to the index.php file,
   and my comic or nothing showed up on the main page. I switched back to my previous
   placeholder theme for the time being, and now I can’t get the comic to show up
   on the index page of that one either.
 *  Thread Starter [30seven](https://wordpress.org/support/users/30seven/)
 * (@30seven)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670143)
 * The site I’m trying to get to work is [http://www.dadvsnature.com](http://www.dadvsnature.com)
 *  [Frumph](https://wordpress.org/support/users/frumph/)
 * (@frumph)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670149)
 * [@30seven](https://wordpress.org/support/users/30seven/) did you disable the 
   comic from appearing on the homepage in the comic -> config settings? ..that 
   would stop it from displaying..
 * [@atardiff](https://wordpress.org/support/users/atardiff/) you have some broken
   html there that is causing that shift to the left which looks like it’s some 
   plugin you ahve that’s trying to change the title=”” information inside of the
   a href that’s already there
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670150)
 * Hi Frumph, Customizr adds some filters to the title.
    [https://github.com/Nikeo/customizr/blob/master/inc/parts/class-content-headings.php#L78-82](https://github.com/Nikeo/customizr/blob/master/inc/parts/class-content-headings.php#L78-82)
 *  [Frumph](https://wordpress.org/support/users/frumph/)
 * (@frumph)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670151)
 * no, title=”” in the <a href= on that site he linked has something filtering it
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670152)
 * Yeah, is about Customizr, as you can see it add some filters on the title and
   that’s the result
    `">Comments(0)` this is part of the comment bubble
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670153)
 * I would suggest to add the following code in the customizr child-theme functions.
   php:
 *     ```
       add_filter('tc_display_link_for_post_titles', 'comic_post_title');
       add_filter( 'tc_comments_in_title', 'comic_post_title' );
       add_filter( 'tc_edit_in_title', 'comic_post_title' );
   
       function comic_post_title( $bool ){
           if ( get_post_type() == 'comic' )
             return false;
         return $bool;
       }
       ```
   
 * Or something of the sort, btw I haven’t tested this code, so be aware 😉
 *  [atardiff](https://wordpress.org/support/users/atardiff/)
 * (@atardiff)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670154)
 * Thanks d4z_c0nf, that centered it!
 * Any way now to fix the text and carrots appearing where they shouldn’t, as I 
   described above?
 *  Thread Starter [30seven](https://wordpress.org/support/users/30seven/)
 * (@30seven)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/#post-5670155)
 * [@frumph](https://wordpress.org/support/users/frumph/), I did not disable the
   comic from showing up on the front page. That box is unchecked. I’m back to my
   default theme, and it’s still acting up.

Viewing 15 replies - 1 through 15 (of 50 total)

1 [2](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/4/?output_format=md)
[→](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/2/?output_format=md)

The topic ‘Integrating comic easel plugin’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

## Tags

 * [niclook](https://wordpress.org/support/topic-tag/niclook/)

 * 50 replies
 * 4 participants
 * Last reply from: [Frumph](https://wordpress.org/support/users/frumph/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/integrating-comic-easel-plugin/page/4/#post-5670198)
 * Status: not resolved