Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themethat page you edited was for the single.php, if you want it on the home page that’s another story 😉
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themesearch for the rticle–> in the entry.php file, it’s probably a word wrap problem dunno
</article><!–/article–>
That’s what I see, <!– –> is commenting out, in HTML
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient theme<?php if ( has_post_thumbnail() ) {turns into
<?php if (has_post_thumbnail() && ($post->post_type !== 'comic')) {Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themewell look at line 72 in that code it’s probably something you modified and added an extra ? or something
there are two sections that have
<?php if (has_post_thumbnail()) {You should probably do both and NOT the one with the echo btw – that was before I saw the one you really should do
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themeyou’re missing an end squote after the ‘comic)) should be ‘comic’))
..and there’s 2 places to do that particular thing at
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themeActually..
<?php if ( has_post_thumbnail() ) {would probably be better here:
<?php if (has_post_thumbnail() && ($post->post_type !== 'comic)) {Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themeThis line, inside that file:
echo '<span class="post-featured-img">'.get_the_post_thumbnail($post->ID, 'full', array('title' => '')) .'</span>';Change it to:
if ($post->post_type !== 'comic') echo '<span class="post-featured-img">'.get_the_post_thumbnail($post->ID, 'full', array('title' => '')) .'</span>';^ See that bit of code there that was added? it says if the post type is *not* a comic post type then go ahead and do this, this way the post featured image isn’t displayed as it would be on regular posts
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themeI would need to also see this file:
includes/post-templates/entry.php
that’s a sub directory inside the theme, if you can pastebin it or use proper code markup if it’s not huge
Forum: Plugins
In reply to: [Comic Easel] Previous/First links not showing upSet your comics into only one chapter, but make sure they’re at least a chapter.
Like book 1 -> chapter 1 .. only set it into the chapter 1 chapter
Forum: Plugins
In reply to: [Comic Easel] Comic easel and Salient themeThemes that are not built with Comic Easel integration need to have the php code added manually.
in the single.php and index.php files the
do_action('comic-area');needs to be added; it’s code that is executed to allow comic easel to insert itself into the theme
Forum: Plugins
In reply to: [Comic Easel] Creating custom template for a comic pageI found a good way to do it and that’s by actually using the chapters taxonomy template file
that way when you go to yourcomic.com/chapters/<chapter-name>/ it brings up the custom template you created which can have anything from the current comic and all of the archives with it
I am putting together one as we speak for comicpress for next release
Forum: Plugins
In reply to: [Comic Easel] Can You Remove The Left Toolbar To Increase The Comic Image?Oh, also go to appearance -> customizr and checkbox under [options] the ‘put comic into content section’ option that’s there so that it moves from being full spread to sidebar on the right
Forum: Plugins
In reply to: [Comic Easel] Can You Remove The Left Toolbar To Increase The Comic Image?appearance -> comicpress options -> layout, change it to the 2 column wide layout with sidebar on the right?
Forum: Themes and Templates
In reply to: [ComicPress] Can't view Dashboard Properly – Blank White ScreenYou’re getting a PHP error, check yoru hostings php error log to see what it is. (get help from them for it)
and I suggest migrating to Comic Easel with the new ComicPress as soon as you can since old-ComicPress is not garunteed to work with new WordPress versions.
Forum: Themes and Templates
In reply to: [ComicPress] Comic upload error*grumble* ajax thumbnail rebuild plugin
i wonder if anyones notified that developer recently