Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Testers for version 1.6 needed (3.5 Media Modal)Is there going to be support for $post->ID reference at any point? so we can call the secondary image from anywhere ?
Forum: Themes and Templates
In reply to: [Easel] Translating several texts at Easel theme1. That’s a translation string: code from displaypost.php
<?php comments_popup_link('<span class="comment-balloon comment-balloon-empty"> </span>'.__('Comment ','easel'), '<span class="comment-balloon">1</span> '.__('Comment ','easel'), '<span class="comment-balloon">%</span> '.__('Comments ','easel')); ?>2. get_the_date(get_option(‘date_format’)) uses the date_format from the settings section of your wp-admin, change it there
3. That’s facebook added, it’s not in the code.
4. searchform.php also a translation string already
_e('Search...','easel');Keep looking for them, they’re there.
“can” but people generally don’t because you don’t really have setup information for the archive pages in your documentation
http://jetpack.me/support/infinite-scroll/
no reference to ‘archive’ at all or even search
If the plugin modifies the posts_per_page on the is_archive pages and people don’t want it or compensate for it, then you’re doing something wrong.
Forum: Plugins
In reply to: [Comic Easel] Not working wellOkay, that’s awesome.
/want/
is_main_query() is used other places other then !is_admin that you should not want to affect as well, you need to also add && $query->is_home() to target specifically the home page
ref: author pages uses is_main_query()
Forum: Themes and Templates
In reply to: [Easel] Lost My 3 column Layout after last update!!!.. you didn’t lose your 3 columns, hold your control key down and hit F5 to refresh your site.
You just have the old CSS cached in your browser.
Forum: Themes and Templates
In reply to: [Easel] How to remove the Side Bar From Easel themesidebar’s are executed in the layout-head.php and layout-foot.php, just comment them out.
Forum: Themes and Templates
In reply to: [Easel] Feature requestYup, looks good.
Forum: Themes and Templates
In reply to: [Easel] Feature requestIt adds padding around the link to make it look kinda more inside the box instead of over it.
Forum: Themes and Templates
In reply to: [Easel] Feature requestadd this to your style.css file:
body.home .post-content { padding: 5px; }to make it look better please 😉
Forum: Themes and Templates
In reply to: [Easel] Feature requestnice! I’m going to use that link and create a content-link.php file to go with the theme, good find!
Forum: Plugins
In reply to: [Comic Easel] Set up mutiple comicsEach comic (set of comics) is considered in a chapter, then you use the navigate IN chapter only buttons.
I believe this was answered in my forums for you as well 😉
Forum: Plugins
In reply to: [Comic Easel] Not working wellSo, sorry. What’s the question? and yeah it’s comic-area
did you go to settings -> permalinks and click save so that the system recognizes the post type?
Forum: Plugins
In reply to: [Comic Easel] Publicize Comic automatically with JetpackJetpack publicize currently does not support custom post types, they give word that it’s on the feature list however.
Forum: Themes and Templates
In reply to: [Easel] Feature request.. I believe the ‘aside’ post format already is like this btw if you don’t want to make the changes, just mark the post as ‘aside’ and it will just display the content which then you make the link etc in there.