<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Frumph.NET</title>
	<atom:link href="http://frumph.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://frumph.net</link>
	<description>I&#039;m in your site, touching your stuff.</description>
	<lastBuildDate>Fri, 10 May 2013 19:47:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>You&#8217;re not going to believe this, but hey.  Why not, right?</title>
		<link>http://frumph.net/2013/04/27/youre-not-going-to-believe-this-but-hey-why-not-right/</link>
		<comments>http://frumph.net/2013/04/27/youre-not-going-to-believe-this-but-hey-why-not-right/#comments</comments>
		<pubDate>Sat, 27 Apr 2013 21:04:30 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[ComicPress]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2213</guid>
		<description><![CDATA[I am currently making a &#8220;ComicPress &#8211; Plugin&#8221; designed after the Comic Easel plugin, but uses the ComicPress coding scheme that will work in conjunction with ComicPress Manager. Which will allow you to use ComicPress on the Easel theme and [&#8230;] <a class="more-link" href="http://frumph.net/2013/04/27/youre-not-going-to-believe-this-but-hey-why-not-right/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>I am currently making a &#8220;ComicPress &#8211; Plugin&#8221; designed after the Comic Easel plugin, but uses the ComicPress coding scheme that will work in conjunction with ComicPress Manager.  Which will allow you to use ComicPress on the Easel theme and integrate it into any theme on the WordPress repository.</p>
<p>It&#8217;s either that or I take the Easel theme and move ComicPress into it ;/  ONE OR THE OTHER!  Which one would you rather have? .. seriously, need to know.</p>
<p>- Phil</p>
<p>Additionally do you think we should retire ComicPress altogether in favor of the better Comic Management Systems that are available?</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2013/04/27/youre-not-going-to-believe-this-but-hey-why-not-right/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2013/04/27/youre-not-going-to-believe-this-but-hey-why-not-right/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Use my custom default random avatars code in any theme.</title>
		<link>http://frumph.net/2013/04/19/use-my-custom-default-random-avatars-code-in-any-theme/</link>
		<comments>http://frumph.net/2013/04/19/use-my-custom-default-random-avatars-code-in-any-theme/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 04:37:41 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code snippet]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2187</guid>
		<description><![CDATA[What this does is give your users who do *not* have gravatars from gravatar.com when they post comments, custom avatars that you create. It will pick one from inside the directory and constantly use it based on the end users [&#8230;] <a class="more-link" href="http://frumph.net/2013/04/19/use-my-custom-default-random-avatars-code-in-any-theme/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>What this does is give your users who do *not* have gravatars from gravatar.com when they post comments, custom avatars that you create.   It will pick one from inside the directory and constantly use it based on the end users email address that they use when making a comment.</p>
<p>This code will only replace &#8220;default&#8221; avatars, not ones that people have made at gravatar.com.</p>
<p>The ComicPress and Easel themes already have this, this is a code snippet for &#8216;other&#8217; themes.</p>
<p><strong>This is not code for someone who is completely new to PHP and WordPress coding.</strong></p>
<p>Include this into your functions.php file of your main theme you use, not the child theme.  You will have to add it again if your theme updates.  This is meant for theme author&#8217;s to include it in their themes on updates.</p>
<pre class="brush: php; title: ; notranslate">
function frumph_random_default_avatar_callback( $id_or_email = '' ) {
	if (!empty($id_or_email)) {
		$count = count($results = glob(get_stylesheet_directory() . '/images/avatars/*'));
		if ($count) { 
			$checknum = hexdec(substr(md5($id_or_email),0,5)) % $count;
			if ($count &gt; 0) {
				$custom_avatar = basename($results[(int)$checknum]); 
				$replace_src_avatar = get_stylesheet_directory_uri().'/images/avatars/'.$custom_avatar;
				return $replace_src_avatar;
			}
		} else
			return get_option('avatar_default');
	} else
		return get_option('avatar_default');
}
</pre>
<p>THEN, you need to modify your get_avatar call in your theme (if your theme has it), this code is if your theme HAS a call to the get_avatar function.</p>
<p>What you do is you search for the function &#8216;get_avatar&#8217; within the theme you are using, for example the thematic theme in the library/extensions/ has a file called &#8216;comments-extensions&#8217; inside of it and the line with get_avatar looks like this:</p>
<pre class="brush: php; title: ; notranslate">
$avatar = str_replace( &quot;class='avatar&quot;, &quot;class='photo avatar&quot;, get_avatar( $avatar_email, $avatar_size ) );
</pre>
<p>You want to modify the get_avatar function in it, the 3rd position is the the reference to the &#8216;default&#8217; image, right after size, you will pass the email of the commenter to the function.</p>
<pre class="brush: php; title: ; notranslate">
$avatar = str_replace( &quot;class='avatar&quot;, &quot;class='photo avatar&quot;, get_avatar( $avatar_email, $avatar_size, frumph_random_default_avatar_callback($avatar_email) ) );
</pre>
<p>In the twentytwelve theme, it&#8217;s in the content*.php files, looks something like this:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?&gt;
</pre>
<p>You modify it to add the 3rd argument which changes the default image that it uses, with my code you also pass the email of the commenter in the function.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ), frumph_random_default_avatar_callback(get_the_author_meta('user_email')) ); ?&gt;
</pre>
<p><strong>THEN</strong><br />
Add your images into the theme (or child theme&#8217;s) images/avatars/  directory  so wp-content/themes/mychildtheme/images/avatars/ directory. </p>
<p>The reason I use get_stylesheet_directory is so that the images are retained in the child theme and if the child theme doesn&#8217;t exist the end user can put them in their main theme, but checks child theme first.</p>
<p>- Phil</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2013/04/19/use-my-custom-default-random-avatars-code-in-any-theme/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2013/04/19/use-my-custom-default-random-avatars-code-in-any-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easel (theme) 3.3  Changelog</title>
		<link>http://frumph.net/2013/04/10/easel-theme-3-3-changelog/</link>
		<comments>http://frumph.net/2013/04/10/easel-theme-3-3-changelog/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 03:06:16 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Comic Easel]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Changelog]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2178</guid>
		<description><![CDATA[1. Removed extra code inside the index.php file and fixed the pre_get_posts in the functions.php to associate the MAIN QUERY ONLY $query-&#62; properly for posts per page. Basically it removes an extra loop which wasn&#8217;t needed. 2 &#38; 3. removed [&#8230;] <a class="more-link" href="http://frumph.net/2013/04/10/easel-theme-3-3-changelog/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<li>1. Removed extra code inside the index.php file and fixed the pre_get_posts in the functions.php to associate the MAIN QUERY ONLY $query-&gt; properly for posts per page.</li>
<p>Basically it removes an extra loop which wasn&#8217;t needed.</p>
<li>2 &amp; 3. removed the use of the function easel_display_post() &#8211; now using get_template_part(&#8216;content&#8217; ref: see format types (content.php) &#8211; added format types, which you can &#8216;skin&#8217; the post area for the format type that you want to look differently for that particular format</li>
<p>content-aside.php content.php content-comic.php content-page.php   basically each &#8216;content type&#8217; has their own php file (which is basically html), this will allow you to modify those &#8216;post areas&#8217; display look and feel how you want them to in your child theme&#8230; basically copy the content- type file over to the child theme and hack away.  You can also create other &#8216;content&#8217; types which are commented out in the functions.php like for images and video&#8217;s etc if you want specific looks for your post areas for whatever content type you want.</p>
<li>4. rewrote the functions.php to stay with the guidelines of the theme review team as well as implement for post formats</li>
<p>n/t</p>
<li>5. revamped how the featured image thumbnail for regular posts displays</li>
<p>IN the post info area, to the left of the title, the thumbnail will now display all mini like, instead of above everything, looks keen.</p>
<li>6. revamped the display of the .post-info area of posts in the default style-default.css file</li>
<p>in the default style I added some &#8216;look&#8217; to the post info (the header of  each post) to denote it&#8217;s difference from the rest of the post.</p>
<li>7. added opengraph information for making a thumbnail for youtube video&#8217;s</li>
<p>opengraph = facebook &#8211; google, etc.</p>
<li>8. css element #column is now #content to stay correctly in tune with other themes</li>
<p>This one is very important to CSS skinners, #column no longer exists and it is now #content, so find-replace inside of your CSS file if you used it.  This also paved the way to allow the use of Jetpack&#8217;s Infinite scrolling.  Which allows people to keep scrolling down the page and new posts will pop up. (along with the post formats change)</p>
<p>NOTE edit the style.css, search for .post-image</p>
<pre class="brush: css; title: ; notranslate">
.post-content .post-image {
	float: left;
	display: inline-block;
	padding: 3px 3px 0;
	border: solid 1px #ccc;
	margin: 4px;
}

.post-content .post-image img {
	width: 100px;
	height: auto;
}
</pre>
<p>Fixes the issue with 3.3 with the post image in the title</p>
<p>IF you have layout-head.php in your child theme, make sure to change the id=&#8221;column&#8221; to id=&#8221;content&#8221; inside of that .php file</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2013/04/10/easel-theme-3-3-changelog/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2013/04/10/easel-theme-3-3-changelog/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9.6 and WordPress 3.5 RSS fix for feedburner</title>
		<link>http://frumph.net/2012/12/17/comicpress-and-wordpress-3-5-rss-fix-for-feedburner/</link>
		<comments>http://frumph.net/2012/12/17/comicpress-and-wordpress-3-5-rss-fix-for-feedburner/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 13:46:11 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2163</guid>
		<description><![CDATA[This will require some editing of your wp-content/themes/comicpress/functions/syndication.php file Open up that file on your hosting and replace it with the code available here: https://github.com/Frumph/comicpress/blob/master/functions/syndication.php ^ the github repo is where I store the latest of every edit I make, [&#8230;] <a class="more-link" href="http://frumph.net/2012/12/17/comicpress-and-wordpress-3-5-rss-fix-for-feedburner/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>This will require some editing of your wp-content/themes/comicpress/functions/syndication.php file</p>
<p>Open up that file on your hosting and replace it with the code available here:</p>
<p><a href="https://github.com/Frumph/comicpress/blob/master/functions/syndication.php">https://github.com/Frumph/comicpress/blob/master/functions/syndication.php</a></p>
<p>^ the github repo is where I store the latest of every edit I make, bug fixes and what not</p>
<p>If you are logged into github you can find a &#8220;zip&#8221; button to download the latest full master copy at <a href="http://github.com/Frumph/comicpress">http://github.com/Frumph/comicpress</a></p>
<p>Once you are done replacing that bit of code, you edit a post, save it which then updates your feed (clears your feed cache) then go to feedburner and click the resync button in your admin panel for feedburner</p>
<p>- Phil</p>
<p><span style="color: #993300;">NOTE</span>: For older ComicPress versions, just replace this portion of the syndication.php file:</p>
<pre class="brush: php; title: ; notranslate">
if (!function_exists('comicpress_insert_comic_feed')) {
	function comicpress_insert_comic_feed($content) {
		global $wp_query, $post;
		$category = get_the_category($post-&gt;ID);
		if (comicpress_in_comic_category($category[0]-&gt;cat_ID)) {
			$content = comicpress_comic_feed().$content;
		}
		return apply_filters('comicpress_insert_comic_feed', $content);
	}
}

add_filter('the_content_feed','comicpress_insert_comic_feed');
add_filter('the_excerpt_rss','comicpress_insert_comic_feed');
</pre>
<p><HR><br />
For ComicPress 2.8 open the syndication.php file and replace this:</p>
<pre class="brush: php; title: ; notranslate">
//Insert the comic image into the RSS feed
function comicpress_comic_feed() {
global $post, $comicpress_options; ?&gt;
&lt;p&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot;&gt;&lt;?php echo comicpress_display_comic_image('rss,comic',$comicpress_options['enable_post_thumbnail_rss']); ?&gt;&lt;/a&gt;&lt;/p&gt;&lt;?php
}
</pre>
<p>With this:</p>
<pre class="brush: php; title: ; notranslate">
//Insert the comic image into the RSS feed
function comicpress_comic_feed() {
global $post, $comicpress_options; ?&gt;
return '&lt;p&gt;&lt;a href=&quot;'.get_permalink().'&quot;&gt;'.comicpress_display_comic_image('rss,comic',$comicpress_options['enable_post_thumbnail_rss']).'&lt;/a&gt;&lt;/p&gt;';
}
</pre>
<p>Again what you&#8217;re doing is &#8216;returning&#8217; info instead of echo&#8217;ing it out.<br />
P.S.  change the add_action for the_content to the_content_feed and the_excerpt_rss like the top example, just not the function name after it</p>
<p><HR><br />
For WAYYYY OLD Comicpress&#8217;</p>
<pre class="brush: php; title: ; notranslate">
   echo &quot;&lt;p&gt;&lt;a href=\&quot;&quot;;
    the_permalink();
    echo &quot;\&quot;&gt;&lt;img src=\&quot;$siteurl/$filename\&quot; border=\&quot;0\&quot; alt=\&quot;Cartoon 
thumbnail - &quot;;
        the_title();
        echo &quot; - CLICK for full cartoon\&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&quot;;
</pre>
<p>replace that section with this line (all on one line):</p>
<pre class="brush: php; title: ; notranslate">
return  '&lt;p&gt;&lt;a href=&quot;'.get_permalink().'&quot;&gt;&lt;img 
src=&quot;'.$siteurl.'/'.$filename.'&quot; border=&quot;0&quot; alt=&quot;Cartoon Thumbnail - 
'.get_the_title().' - Click for FULL Cartoon.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;';
</pre>
<p>The idea is to remove the ECHO&#8217;s and make it all RETURN</p>
<p>For ComicPress 2.5:<br />
in the functions.php search for this:</p>
<pre class="brush: php; title: ; notranslate">
function comic_feed() {
  echo &quot;&lt;p&gt;&lt;a href=\&quot;&quot;;
  the_permalink();
  echo &quot;\&quot;&gt;&lt;img src=\&quot;&quot;;
  echo get_comic_url('rss');
  echo &quot;\&quot; border=\&quot;0\&quot; alt=\&quot;&quot;;
  echo the_title();
  echo &quot;\&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&quot;;
} 
</pre>
<p>replace it with this:</p>
<pre class="brush: php; title: ; notranslate">
function comic_feed() {
  return '&lt;p&gt;&lt;a href=&quot;'.get_permalink().'&quot; title=&quot;'.get_the_title().'&quot;&gt;&lt;img src=&quot;'.get_comic_url('rss').'&quot; border=&quot;0&quot; alt=&quot;'.get_the_title().'&quot; title=&quot;'.get_the_title().'&quot;&gt;&lt;/a&gt;&lt;/p&gt;';
} 
</pre>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/12/17/comicpress-and-wordpress-3-5-rss-fix-for-feedburner/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/12/17/comicpress-and-wordpress-3-5-rss-fix-for-feedburner/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>ComicPress w/ Comic Easel (and Easel) and WordPress 3.5+ Bug</title>
		<link>http://frumph.net/2012/12/12/comicpress-w-comic-easel-and-easel-and-wordpress-3-5/</link>
		<comments>http://frumph.net/2012/12/12/comicpress-w-comic-easel-and-easel-and-wordpress-3-5/#comments</comments>
		<pubDate>Thu, 13 Dec 2012 04:28:28 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Comic Easel]]></category>
		<category><![CDATA[ComicPress]]></category>
		<category><![CDATA[Easel]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2158</guid>
		<description><![CDATA[Found a bug, but it&#8217;s a simple one. The Symptom:  The archive list of posts for categories or terms looks funkey and shows years and no other info with a weird title The Cause: a template file in the theme&#8217;s [&#8230;] <a class="more-link" href="http://frumph.net/2012/12/12/comicpress-w-comic-easel-and-easel-and-wordpress-3-5/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>Found a bug, but it&#8217;s a simple one.</p>
<p>The Symptom:  The archive list of posts for categories or terms looks funkey and shows years and no other info with a weird title</p>
<p>The Cause: a template file in the theme&#8217;s directory is trying to be used instead of the main archive.php file which is supposed to be used, mainly when comic easel is being used in the comicpress theme</p>
<p>The archive templates that come with ComicPress when you&#8217;re using Comic Easel *with* ComicPress as a theme need adjusting their filenames.</p>
<p>The filenames in question are all of the files in the themes directory that start with archive-*.php  (the * means anything after that)  for exampl;e, the main culprit is archive-comic.php &#8230; archive.php is fine, it&#8217;s just the ones with the dash after it.</p>
<p>So to fix this, you basically just FTP into your theme directory for easel or comicpress and rename the template files to be template-archive-*.php  .. example archive-comic.php would turn into template-archive-comic.php and that would fix it from looking at archive-comic.php as the archive page for the comic post type</p>
<p>- Phil</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/12/12/comicpress-w-comic-easel-and-easel-and-wordpress-3-5/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/12/12/comicpress-w-comic-easel-and-easel-and-wordpress-3-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easel 3.2</title>
		<link>http://frumph.net/2012/10/11/easel-3-2/</link>
		<comments>http://frumph.net/2012/10/11/easel-3-2/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 03:34:50 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Easel]]></category>
		<category><![CDATA[Changelog]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2151</guid>
		<description><![CDATA[3.2 Introducing Flexible Headers, no longer need to set a specific height and width Removed the max-width: 100% inside the style.css cause chrome doesn&#8217;t like it, wasn&#8217;t really necessary &#8211; you just have to make sure you set images to [&#8230;] <a class="more-link" href="http://frumph.net/2012/10/11/easel-3-2/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>3.2<br />
Introducing Flexible Headers, no longer need to set a specific height and width<br />
Removed the max-width: 100% inside the style.css cause chrome doesn&#8217;t like it, wasn&#8217;t really necessary &#8211; you just have to make sure you set images to &#8220;large&#8221; size when adding them inside of posts.<br />
Added new option(s) to disable the display of the &#8220;at time&#8221; in posts and enable the display of &#8220;last modified&#8221; date in the posts.<br />
More cleanups in the comments.php output, including fixing a missing language translation string or two<br />
Added a new options tab in the Easel Options for Menubar alone, with more Social icon&#8217;s for the menubar<br />
Added display:block on #comic<br />
New register sidebar function code that expands to allow translateable sidebar descriptions<br />
added additional clear float inside the easel_get_sidebar function so that it encapsulates properly<br />
fixed bug with the loop count on home page by removing the filter before each sidebar is displayed (then re-adding it after)</p>
<p>- CHILD THEME DIFFERENCE -</p>
<p>layout-head.php and layout-foot.php have 2 changes in each, they differ only in the fact instead of using get_sidebar(&#8216;left&#8217;) and get_sidebar(&#8216;right&#8217;) it utilizes the easel_get_sidebar() to function so that it will allow the bug fix for the home page to work properly, .. that bug fix is the &#8216;count&#8217; of how many items get displayed in a loop &#8216;home blog post count&#8217;  was bleeding into the sidebars not allowing for those counts made in widgets to display properly.</p>
<p>So in your child themes, if you use the layout-head.php and layout-foot.php change the get_sidebar( to easel_get_sidebar( and you will be up to date.</p>
<p>- Phil</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/10/11/easel-3-2/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/10/11/easel-3-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Redesign of theDreamlandChronicles.com (LIVE)</title>
		<link>http://frumph.net/2012/09/23/redesign-of-thedreamlandchronicles-com-live/</link>
		<comments>http://frumph.net/2012/09/23/redesign-of-thedreamlandchronicles-com-live/#comments</comments>
		<pubDate>Mon, 24 Sep 2012 03:18:37 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2137</guid>
		<description><![CDATA[On Wednesday, September 26th at around 7pm (PST) I am going to be implementing a new design on Scott Christian Sava&#8217;s &#8211; The Dreamland Chronicles. You can join me via ustream on my workshop channel Frumph&#8217;s Workshop and watch while [&#8230;] <a class="more-link" href="http://frumph.net/2012/09/23/redesign-of-thedreamlandchronicles-com-live/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>On Wednesday, September 26th at around 7pm (PST) I am going to be implementing a new design on Scott Christian Sava&#8217;s &#8211; <a href="http://thedreamlandchronicles.com">The Dreamland Chronicles</a>.</p>
<p>You can join me via ustream on my workshop channel <a href="http://www.ustream.tv/channel/frumph-workshop">Frumph&#8217;s Workshop</a> and watch while I transform the dreamland chronicles site into something new.</p>
<p>I will also be migrating the backend from using ComicPress to Comic Easel.</p>
<p>- Phil</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/09/23/redesign-of-thedreamlandchronicles-com-live/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/09/23/redesign-of-thedreamlandchronicles-com-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easel 3.1</title>
		<link>http://frumph.net/2012/09/11/easel-3-1/</link>
		<comments>http://frumph.net/2012/09/11/easel-3-1/#comments</comments>
		<pubDate>Tue, 11 Sep 2012 07:32:07 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Easel]]></category>
		<category><![CDATA[Changelog]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2127</guid>
		<description><![CDATA[From the changelog.txt 3.1 Changed the sticky pushpin image to 16px Fix for the breadcrumbs (hopefully) Timefix for the body classes fixed the RSS title situation where it duplicated Fixed the missing language translation string in the comments.php changed the [&#8230;] <a class="more-link" href="http://frumph.net/2012/09/11/easel-3-1/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>From the changelog.txt</p>
<p>3.1<br />
Changed the sticky pushpin image to 16px<br />
Fix for the breadcrumbs (hopefully)<br />
Timefix for the body classes<br />
fixed the RSS title situation where it duplicated<br />
Fixed the missing language translation string in the comments.php<br />
changed the facebook like button and modified the og:description output<br />
removed the overflow: hidden from .entry &#8211; up to end user to adjust the images accordingly.</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/09/11/easel-3-1/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/09/11/easel-3-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Theme Companion made obselete by Jetpack from Automattic, but in a good way.</title>
		<link>http://frumph.net/2012/08/25/theme-companion-made-obselete-by-jetpack-from-automattic-but-in-a-good-way/</link>
		<comments>http://frumph.net/2012/08/25/theme-companion-made-obselete-by-jetpack-from-automattic-but-in-a-good-way/#comments</comments>
		<pubDate>Sat, 25 Aug 2012 09:52:50 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2117</guid>
		<description><![CDATA[I will be taking my theme companion plugin (i.e. old comicpress companion) off the repository now.    The plugin Jetpack, made by Automattic pretty much makes my plugin obselete, .. but in a good way.   They integrated it in a way [&#8230;] <a class="more-link" href="http://frumph.net/2012/08/25/theme-companion-made-obselete-by-jetpack-from-automattic-but-in-a-good-way/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>I will be taking my theme companion plugin (i.e. old comicpress companion) off the repository now.    The plugin Jetpack, made by Automattic pretty much makes my plugin obselete, .. but in a good way.   They integrated it in a way that is way more advanced and cleaner then mine and doesn&#8217;t require any specific permissions set for some hostings.</p>
<p>Another project I don&#8217;t have to maintain. <img src='http://frumph.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />    But really glad that people found a great use for it and it has been reborn in the Jetpack plugin.</p>
<p>- Phil</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/08/25/theme-companion-made-obselete-by-jetpack-from-automattic-but-in-a-good-way/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/08/25/theme-companion-made-obselete-by-jetpack-from-automattic-but-in-a-good-way/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Couple more child themes are available for Easel</title>
		<link>http://frumph.net/2012/07/05/couple-more-child-themes-are-available-for-easel/</link>
		<comments>http://frumph.net/2012/07/05/couple-more-child-themes-are-available-for-easel/#comments</comments>
		<pubDate>Thu, 05 Jul 2012 19:53:55 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Easel]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=2098</guid>
		<description><![CDATA[I added two more child themes for Easel.   They&#8217;re available in the forum&#8217;s http://forum.frumph.net/viewforum.php?f=19 The first one is &#8220;Boxed for Easel&#8221;  this child theme is an upgrade to Boxed for ComicPress The next one is &#8220;Easel &#8211; Comic Easel&#8221; this [&#8230;] <a class="more-link" href="http://frumph.net/2012/07/05/couple-more-child-themes-are-available-for-easel/">&#8595; Read the rest of this entry...</a>]]></description>
				<content:encoded><![CDATA[<p>I added two more child themes for Easel.   They&#8217;re available in the forum&#8217;s http://forum.frumph.net/viewforum.php?f=19</p>
<p>The first one is &#8220;Boxed for Easel&#8221;  this child theme is an upgrade to Boxed for ComicPress</p>
<p>The next one is &#8220;Easel &#8211; Comic Easel&#8221; this child theme is basically the http://comiceasel.com website look.  This child theme changes the width of the 2 column layouts up to 920px;</p>
<p>- Phil</p>
<div class="facebook-like"><fb:like layout="standard" show_faces="true" href="http://frumph.net/2012/07/05/couple-more-child-themes-are-available-for-easel/"></fb:like></div>]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2012/07/05/couple-more-child-themes-are-available-for-easel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.326 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-19 21:00:54 -->
