Frumph
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Easel] Feature requesthuh, well not sure how you can do this besides setting up a post-format with it?
Yeah you absolutely can do that with 3.3
Edit the functions.php file and find the add_theme_support for post-formats, add ‘link’ to that array
so that it looks like this:
add_theme_support( 'post-formats', array( 'aside', 'link' // 'image', // 'video', // 'quote', // 'status' ) );Then, copy the content.php file to content-link.php (so there are now two files) and edit the content-link.php file remove, delete this section:
<div class="post-info"> <?php easel_display_post_title(); if (!easel_is_bbpress()) easel_display_post_calendar(); if (is_sticky()) { ?><div class="sticky-image">Featured Post</div><?php } if (function_exists('easel_show_mood_in_post')) easel_show_mood_in_post(); ?> <div class="post-text"> <?php easel_display_post_author(); easel_display_post_date(); easel_display_post_time(); easel_display_modified_date_time(); easel_display_post_category(); if (function_exists('the_ratings') && $post->post_type == 'post') { the_ratings(); } do_action('easel-post-info'); wp_link_pages(array('before' => '<div class="linkpages"><span class="linkpages-pagetext">Pages:</span> ', 'after' => '</div>', 'next_or_number' => 'number')); ?> </div> <div class="clear"></div> </div>That’s the ‘header’ info for posts, all of the information.
Then, go to posts -> add new post and add a post, in the right section there will be an area for what type of post it is, just move the markbox to ‘link’ and make your post, all that will be in the content of the post is well, the content really.
You can further modify that content-link.php file to make the post section look like you want.
Forum: Themes and Templates
In reply to: [Easel] Remove post title linkThis is in functions/displaypost.php
comment out these two lines by putting // in front of them
if (is_home() || is_search() || is_archive() && !is_page()) $post_title .= "<a href=\"".get_permalink()."\">"; if (is_home() || is_search() || is_archive() && !is_page()) $post_title .= "</a>";Forum: Themes and Templates
In reply to: [Easel] child theme for the style-default page?Absolutely agree with Aramaz; to make the style-default.css into a child theme editable, you would create the header information for style.css child theme wise then add the contents of style-default.css into it and then modify it as you wish. (disable the default style in the easel-options – cause now you’re using the one from the child theme)
my forums have child themes you can take examples from.
Forum: Themes and Templates
In reply to: [Easel] How can I change the backgrond in Easel 3.2 theme?wp-admin -> Appearance -> Background ?
This would have happened if you didn’t have an updated version of WordPress; make sure all of your software is updated to the latest versions.
Edit the pages in question and just uncheck the box that allows commenting, it’s in the page editor.
If you do not see a box allowing you to uncheck, there are ‘disable and enable’ options in the upper right of the page editor labelled ‘screen options’ click that and the dropdown will appear, checkmark the ‘discussion’ one, then the option will appear in the editor.
Forum: Themes and Templates
In reply to: [Easel] internal server error when istalled comic easelLooks like you went with a different plugin/script. Although to answer the question 500 errors are php errors, generally caused by conflicts with other functions that are using the same name when activating plugins.
Comic Easel utilizes ceo_ as prefixes for all of it’s functions so having something else conflict with it should be utterly rare.
Checking your error logs on your hosting service will provide you with information.
Forum: Themes and Templates
In reply to: [Easel] Change background( the grey in middle column colour)Not using Easel, resolving.
Forum: Themes and Templates
In reply to: [Easel] change datefunction easel_display_post_calendar() { global $post, $wp_query; if (is_page()) return; if (easel_themeinfo('enable_post_calendar')) { $post_calendar = "<div class=\"post-calendar-date\"><div class=\"calendar-date\"><span>".get_the_time('M')."</span>".get_the_time('d')."</div></div>\r\n"; echo apply_filters('easel_display_post_calendar', $post_calendar); } }You can add (and edit) this to your CHILD THEMES functions.php file, or edit it directly in the functions/displaypost.php to suit your needs.
Forum: Themes and Templates
In reply to: [Easel] Photo GalleryUse jetpack’s carousel, (the jetpack plugin) and add the images normally with the media library and the carousel will display them real cool in a sliding back and forth look, kinda cool
Forum: Themes and Templates
In reply to: [Easel] How to get Header image below site title/tagline?You can add the site title and tag inside a widget and put it in ‘above header’ widget area.
Forum: Themes and Templates
In reply to: [Easel] Aditing the theme: Nav bar logono response after 2 months
Forum: Themes and Templates
In reply to: [Easel] How to enable Post Format "Link" Easel?with Easel 3.3 that was just added today post-formats are enabled
if you want the link one here are the directionsedit functions.php and find the add_theme_support for post-formats, add ‘link’ to the list.
Find the content.php file in the theme directory and copy it as content-link.php
edit the content-link.php file to look how you want as a link, preferably adding it to your child theme
done.
Forum: Themes and Templates
In reply to: [Easel] Theme appears to be messing up Groupon affiliate widgetThere isn’t any ‘code’ at all in Easel to modify the contents of widgets. When you copy and paste, paste it first into a text document then copy it from there into the widget to see if it copies properly.
Forum: Themes and Templates
In reply to: [Easel] What Happened to the Buy Print Feature?There isn’t a buy print feature in comic easel yet. *yet*