<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to install a Thematic Child Theme?</title>
	<atom:link href="http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/</link>
	<description>Code Snippets and more ...</description>
	<lastBuildDate>Wed, 21 Sep 2011 08:20:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Angel Tzara</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-80</link>
		<dc:creator>Angel Tzara</dc:creator>
		<pubDate>Mon, 24 Jan 2011 12:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-80</guid>
		<description>Hi,

I have to say that I am a little bit of a noob when it comes to slightly more advanced themes.  I read your post, and I went to used BT extended on my newest blog.
However, I keep getting some odd pop up always saying: &quot;No content exists at page 1! Loading 1st page instead.&quot;
So I am not sure if this is a BT extented error or the Framework. Also looking at the Thematic Options, I couldn&#039;t figure out what &quot;Index Insert Position&quot; was for. Mine says 2.
It could simply be me, having missed something, but help or any idea would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have to say that I am a little bit of a noob when it comes to slightly more advanced themes.  I read your post, and I went to used BT extended on my newest blog.<br />
However, I keep getting some odd pop up always saying: &#8220;No content exists at page 1! Loading 1st page instead.&#8221;<br />
So I am not sure if this is a BT extented error or the Framework. Also looking at the Thematic Options, I couldn&#8217;t figure out what &#8220;Index Insert Position&#8221; was for. Mine says 2.<br />
It could simply be me, having missed something, but help or any idea would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thompson</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-66</link>
		<dc:creator>Thompson</dc:creator>
		<pubDate>Sun, 05 Sep 2010 02:48:36 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-66</guid>
		<description>Or better yet, this automatically creates a body class for any custom post type. My coding may well be horrible, but I added this within the $c array, at the bottom, like so. See the very last line:
$c = array();
				{
					// Generic semantic classes for what type of content is displayed
					is_front_page()  ? $c[] = &#039;home&#039;       : null; // For the front page, if set
				        is_home()        ? $c[] = &#039;blog&#039;       : null; // For the blog posts page, if set
					is_archive()     ? $c[] = &#039;archive&#039;    : null;
					is_date()        ? $c[] = &#039;date&#039;       : null;
					is_search()      ? $c[] = &#039;search&#039;     : null;
					is_paged()       ? $c[] = &#039;paged&#039;      : null;
					is_attachment()  ? $c[] = &#039;attachment&#039; : null;
					is_404()         ? $c[] = &#039;four04&#039;     : null; // CSS does not allow a digit as first character
					is_page()        ? $c[] = &#039;page&#039;       : null;
					if (!is_home()) {  $c[] = get_post_type() ; }  // Adds a custom post type body class
				}

I had to add the extra if statement around it because !is_home() by itself wasn&#039;t working.</description>
		<content:encoded><![CDATA[<p>Or better yet, this automatically creates a body class for any custom post type. My coding may well be horrible, but I added this within the $c array, at the bottom, like so. See the very last line:<br />
$c = array();<br />
				{<br />
					// Generic semantic classes for what type of content is displayed<br />
					is_front_page()  ? $c[] = &#8216;home&#8217;       : null; // For the front page, if set<br />
				        is_home()        ? $c[] = &#8216;blog&#8217;       : null; // For the blog posts page, if set<br />
					is_archive()     ? $c[] = &#8216;archive&#8217;    : null;<br />
					is_date()        ? $c[] = &#8216;date&#8217;       : null;<br />
					is_search()      ? $c[] = &#8216;search&#8217;     : null;<br />
					is_paged()       ? $c[] = &#8216;paged&#8217;      : null;<br />
					is_attachment()  ? $c[] = &#8216;attachment&#8217; : null;<br />
					is_404()         ? $c[] = &#8216;four04&#8242;     : null; // CSS does not allow a digit as first character<br />
					is_page()        ? $c[] = &#8216;page&#8217;       : null;<br />
					if (!is_home()) {  $c[] = get_post_type() ; }  // Adds a custom post type body class<br />
				}</p>
<p>I had to add the extra if statement around it because !is_home() by itself wasn&#8217;t working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thompson</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-65</link>
		<dc:creator>Thompson</dc:creator>
		<pubDate>Sun, 05 Sep 2010 01:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-65</guid>
		<description>I figured it out. I was able to over childtheme_override_body_class, copy over stuff I needed from dynamic-classes.php, and added this code for a video content type. For some reason it showed the custom post type name on the homepage too, where I aggregate all post types, but !is_home() got rid of it there:
get_post_type() == &#039;video&#039; &amp;&amp; !is_home()     ? $c[] = &#039;video&#039;       : null;</description>
		<content:encoded><![CDATA[<p>I figured it out. I was able to over childtheme_override_body_class, copy over stuff I needed from dynamic-classes.php, and added this code for a video content type. For some reason it showed the custom post type name on the homepage too, where I aggregate all post types, but !is_home() got rid of it there:<br />
get_post_type() == &#8216;video&#8217; &amp;&amp; !is_home()     ? $c[] = &#8216;video&#8217;       : null;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thompson</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-64</link>
		<dc:creator>Thompson</dc:creator>
		<pubDate>Fri, 27 Aug 2010 22:36:35 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-64</guid>
		<description>Hi Chris, 

Can you do a post showing all the current filters for body classes and post classes? Extending on your post here: http://themeshaper.com/forums/topic/how-do-you-use-dynamically-generated-css-classes. I want to clean it up a bit. 

I&#039;ve posted in the Themeshaper forums a couple times but couldn&#039;t get a response from any member who knew and guessing at filter names hasn&#039;t worked all that well. ;)

(p.s. It&#039;d be cool to have a body class with the custom post type name-- e.g. recipe, video. This seems to exist for post classes already, but not for body classes. Thanks!)</description>
		<content:encoded><![CDATA[<p>Hi Chris, </p>
<p>Can you do a post showing all the current filters for body classes and post classes? Extending on your post here: <a href="http://themeshaper.com/forums/topic/how-do-you-use-dynamically-generated-css-classes" rel="nofollow">http://themeshaper.com/forums/topic/how-do-you-use-dynamically-generated-css-classes</a>. I want to clean it up a bit. </p>
<p>I&#8217;ve posted in the Themeshaper forums a couple times but couldn&#8217;t get a response from any member who knew and guessing at filter names hasn&#8217;t worked all that well. <img src='http://programming.thematic4you.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>(p.s. It&#8217;d be cool to have a body class with the custom post type name&#8211; e.g. recipe, video. This seems to exist for post classes already, but not for body classes. Thanks!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thompson</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-60</link>
		<dc:creator>Thompson</dc:creator>
		<pubDate>Mon, 19 Jul 2010 22:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-60</guid>
		<description>Dude. I just discovered the Thematic framework and have to tell you that you rock! 

That is all.</description>
		<content:encoded><![CDATA[<p>Dude. I just discovered the Thematic framework and have to tell you that you rock! </p>
<p>That is all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mia</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-57</link>
		<dc:creator>Mia</dc:creator>
		<pubDate>Sun, 04 Jul 2010 09:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-57</guid>
		<description>Hi Chris, I just came across your site - and I must say : Your Theme looks awesome ! Milo has done a great job w/ the design aspect of it - however , I have always loved the grid structure of the Thematic Theme over any other framework out there . When users ask my opinion on a fast SEO friendly theme ( the first thing they usually throw at me is the Thesis Theme ) ; my response to them is : &lt;i&gt; &quot; Why not consider the Thematic Theme instead ? its just as fast loading , and SEO optimized as any theme out there &amp; its FREE ! helloooo ??? &quot;&lt;/i&gt; . It amazes me that most users are under the misguided notion that a &lt;i&gt;Theme&lt;/i&gt; will make them SEO preferred in googles search engines and will gain them page rank ! So ridiculous . I had downloaded the Thematic framework some months ago , and my initial idea was to begin designing &lt;b&gt;Skins&lt;/b&gt; for it . Unfortunately I became so busy w/ other projects - and I didnt have the opportunity to do so , but I am still harbouring the notion and at some point : I will do it ! :D When I do finally produce something &lt;i&gt;worthy&lt;/i&gt; , I shall be dropping by again to give you a &lt;i&gt;preview&lt;/i&gt; and hopefully get your approval . Thank you for building such a great Theme - as it will always be my favorite above all themes . 
Wishing you much continued future success within all of your life &amp; career endeavors .

Mia </description>
		<content:encoded><![CDATA[<p>Hi Chris, I just came across your site &#8211; and I must say : Your Theme looks awesome ! Milo has done a great job w/ the design aspect of it &#8211; however , I have always loved the grid structure of the Thematic Theme over any other framework out there . When users ask my opinion on a fast SEO friendly theme ( the first thing they usually throw at me is the Thesis Theme ) ; my response to them is : <i> &#8221; Why not consider the Thematic Theme instead ? its just as fast loading , and SEO optimized as any theme out there &amp; its FREE ! helloooo ??? &#8220;</i> . It amazes me that most users are under the misguided notion that a <i>Theme</i> will make them SEO preferred in googles search engines and will gain them page rank ! So ridiculous . I had downloaded the Thematic framework some months ago , and my initial idea was to begin designing <b>Skins</b> for it . Unfortunately I became so busy w/ other projects &#8211; and I didnt have the opportunity to do so , but I am still harbouring the notion and at some point : I will do it ! <img src='http://programming.thematic4you.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  When I do finally produce something <i>worthy</i> , I shall be dropping by again to give you a <i>preview</i> and hopefully get your approval . Thank you for building such a great Theme &#8211; as it will always be my favorite above all themes .<br />
Wishing you much continued future success within all of your life &amp; career endeavors .</p>
<p>Mia </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BT Ex on Themati &#124; Themes &#124; milo &#124; creative webdesign</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-42</link>
		<dc:creator>BT Ex on Themati &#124; Themes &#124; milo &#124; creative webdesign</dc:creator>
		<pubDate>Fri, 04 Jun 2010 19:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-42</guid>
		<description>[...] Blogging Times Extended WordPress Theme theme, featuring a four column fluid layout, recoded with Chris from Thematic4You.Enabled with flickr support, pagenavi support, custom field options, flash clock, related posts and [...]</description>
		<content:encoded><![CDATA[<p>[...] Blogging Times Extended WordPress Theme theme, featuring a four column fluid layout, recoded with Chris from Thematic4You.Enabled with flickr support, pagenavi support, custom field options, flash clock, related posts and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BT Extended &#124; Themes &#124; milo &#124; creative webdesign</title>
		<link>http://programming.thematic4you.com/2010/06/how-to-install-a-thematic-child-theme/comment-page-1/#comment-41</link>
		<dc:creator>BT Extended &#124; Themes &#124; milo &#124; creative webdesign</dc:creator>
		<pubDate>Fri, 04 Jun 2010 19:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://programming.thematic4you.com/?p=81#comment-41</guid>
		<description>[...] theme, featuring a four column fluid layout, featuring a four column fluid layout, recoded with Chris from Thematic4You.Enabled with flickr support, pagenavi support, custom field options, flash clock, related posts and [...]</description>
		<content:encoded><![CDATA[<p>[...] theme, featuring a four column fluid layout, featuring a four column fluid layout, recoded with Chris from Thematic4You.Enabled with flickr support, pagenavi support, custom field options, flash clock, related posts and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

