<?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>WordPressing &#187; Thesis Theme</title>
	<atom:link href="http://wordpressing.info/category/thesis-theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressing.info</link>
	<description>WordPress Tutorials, Plugins &#38; Themes</description>
	<lastBuildDate>Fri, 25 Feb 2011 20:29:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Thesis Breacrumb navigation</title>
		<link>http://wordpressing.info/thesis-breacrumb-navigation/</link>
		<comments>http://wordpressing.info/thesis-breacrumb-navigation/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 08:44:35 +0000</pubDate>
		<dc:creator>Martin Metzmacher</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Before Header]]></category>
		<category><![CDATA[breadcrumb navigation]]></category>
		<category><![CDATA[BreadCrumb NavXT]]></category>
		<category><![CDATA[Execute PHP]]></category>
		<category><![CDATA[Thesis hook]]></category>
		<category><![CDATA[Thesis Open Hook]]></category>

		<guid isPermaLink="false">http://wordpressing.info/?p=116</guid>
		<description><![CDATA[In the Thesis Open Hook Plugin, search for &#8220;Before Header&#8221; (or whereever you want to add the breadcrumb navigation). Make you you have the plugin Breadcrumb NavXT installed and activated. Then add the code to the Thesis hook and activate &#8220;Execute PHP on this hook&#8221;. &#60;div&#62; &#60;strong&#62; &#60;?php if(function_exists(&#8216;bcn_display&#8217;)) { bcn_display(); } ?&#62; &#60;/strong&#62; &#60;/div&#62; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In the Thesis Open Hook Plugin, search for &#8220;Before Header&#8221; (or whereever you want to add the breadcrumb navigation). Make you you have the plugin Breadcrumb NavXT installed and activated. Then add the code to the Thesis hook and activate &#8220;Execute PHP on this hook&#8221;.</p>
<p>&lt;div&gt;<br />
&lt;strong&gt;<br />
&lt;?php<br />
if(function_exists(&#8216;bcn_display&#8217;))<br />
{<br />
bcn_display();<br />
}<br />
?&gt;<br />
&lt;/strong&gt;<br />
&lt;/div&gt;<br />
&lt;br&gt;</p>
<p>You might want to style this differently&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressing.info/thesis-breacrumb-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Tweetmeme button</title>
		<link>http://wordpressing.info/add-tweetmeme-button/</link>
		<comments>http://wordpressing.info/add-tweetmeme-button/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 09:49:26 +0000</pubDate>
		<dc:creator>Martin Metzmacher</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[conditional statements]]></category>
		<category><![CDATA[open hook]]></category>
		<category><![CDATA[social mediam retweet]]></category>
		<category><![CDATA[tweetmeme]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://wordpressing.info/?p=100</guid>
		<description><![CDATA[I wanted to add the tweetmeme button to thesis, but only on home and posts not on pages use small button in teaser, so here we go: In Thesis Open Hook add Before Headline &#60;?php if (!( is_page() )) { ?&#62; &#60;div class=”tweetmeme_button” style=&#34;float: right; margin: 5px 0 15px 15px;&#34;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#60;script type=&#34;text/javascript&#34;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;tweetmeme_url = &#039;&#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I wanted to add the tweetmeme button to thesis, but</p>
<ul>
<li>only on home and posts</li>
<li>not on pages</li>
<li>use small button in teaser,</li>
</ul>
<p>so here we go:</p>
<p>In Thesis Open Hook add</p>
<p><strong>Before Headline</strong></p>
<p><pre><code>
&lt;?php if (!( is_page() )) { ?&gt;
&lt;div class=”tweetmeme_button” style=&quot;float: right; margin: 5px 0 15px 15px;&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tweetmeme_url = &#039;&lt;?php the_permalink(); ?&gt;&#039;;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt;&lt;/script&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;
&nbsp;&nbsp; 
&lt;?php } else { ?&gt;

&lt;?php } ?&gt;
</code></pre></p>
<p><a href="http://wordpressing.info/wp-content/uploads/2010/03/headline-tweetmeme.png"><img class="alignnone size-medium wp-image-102" title="headline-tweetmeme" src="http://wordpressing.info/wp-content/uploads/2010/03/headline-tweetmeme-300x103.png" alt="" width="300" height="103" /></a></p>
<p><strong>After Teaser Headline</strong></p>
<p><pre><code>
&lt;div class=&quot;tweetmeme_button&quot; style=&quot;float: right; margin: 5px 0 15px 15px;&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
tweetmeme_style = &#039;compact&#039;;
tweetmeme_url = &#039;&lt;?php the_permalink(); ?&gt;&#039;;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt;&lt;/script&gt;
&nbsp;&nbsp;&lt;/div&gt;
</code></pre></p>
<p><a href="http://wordpressing.info/wp-content/uploads/2010/03/teaser-tweetmeme.png"><img class="alignnone size-medium wp-image-103" title="teaser-tweetmeme" src="http://wordpressing.info/wp-content/uploads/2010/03/teaser-tweetmeme-300x121.png" alt="" width="300" height="121" /></a></p>
<p>Et voila!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressing.info/add-tweetmeme-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix checkbox width in Thesis Theme</title>
		<link>http://wordpressing.info/fix-checkbox-width-in-thesis-theme/</link>
		<comments>http://wordpressing.info/fix-checkbox-width-in-thesis-theme/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:19:21 +0000</pubDate>
		<dc:creator>Martin Metzmacher</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Checkbox]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://wordpressing.info/?p=93</guid>
		<description><![CDATA[In life pretty much everything si simple if you know how to do it. The same applies to the checkboxes in Thesis Theme. This looks broken to me. There is a wide space around the checkbox, which does not make sense to me. But&#8230;I am not a CSS person, so I did not get that [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In life pretty much everything si simple if you know how to do it. The same applies to the checkboxes in Thesis Theme.</p>
<p><img class="alignright size-full wp-image-94" title="thesis-theme-checkbox" src="http://wordpressing.info/wp-content/uploads/2010/03/thesis-theme-checkbox.png" alt="Thesis Theme broken checkbox width" width="500" height="207" /></p>
<p>This looks broken to me. There is a wide space around the checkbox, which does not make sense to me. But&#8230;I am not a CSS person, so I did not get that fixed. Thanks to the Thesis Theme Support Forum (actually thanks to <a href="http://thesislab.net/">ThesisLab.net</a>) I was able to fix that problem with just two lines of CSS code.</p>
<p><pre><code>
.custom .format_text input, #commentform input, #commentform textarea {
width:auto;
}
</code></pre></p>
<p>Zack! Done! Switched around text and labels&#8230;now it looks beautiful!</p>
<p><img src="http://wordpressing.info/wp-content/uploads/2010/03/checkbox-fix-thesis.png" alt="fixed checkbox width Thesis Theme" title="checkbox-fix-thesis" width="367" height="180" class="alignright size-full wp-image-95" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressing.info/fix-checkbox-width-in-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Show no Teasers on Thesis Home Page</title>
		<link>http://wordpressing.info/no-teasers-thesis-theme/</link>
		<comments>http://wordpressing.info/no-teasers-thesis-theme/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 09:46:46 +0000</pubDate>
		<dc:creator>Martin Metzmacher</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[Posts]]></category>
		<category><![CDATA[Settings]]></category>
		<category><![CDATA[Teaser]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://wordpressing.info/?p=87</guid>
		<description><![CDATA[Sometimes you do not want to show any teasers inyour specific Thesis Theme. But how to turn them of and show &#8211; let say only 3 fully featured posts on the homep page of your blog? Well that is actually pretty easy. The first thing you need to do is to go into Thesis Theme [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-full wp-image-88" title="Wordpress-thesis-theme-options" src="http://wordpressing.info/wp-content/uploads/2010/03/Wordpress-thesis-theme-options.png" alt="" width="301" height="375" /></p>
<p style="text-align: left;">Sometimes you do not want to show any teasers inyour specific Thesis Theme. But how to turn them of and show &#8211; let say only 3 fully featured posts on the homep page of your blog? Well that is actually pretty easy. The first thing you need to do is to go into Thesis Theme options and click on &#8220;Home Page Display&#8221;. Select the number of featured post you want to show on home (for example 3).</p>
<p style="text-align: left;">Then go to the general settings in your WordPress blog and select &#8220;Reading Settings&#8221;. Here you can enter the amout of Blog posts you want to show on you &#8230;you guessed it&#8230;Home Page!</p>
<p style="text-align: left;">
<p style="text-align: left;"><img class="size-full wp-image-89 alignnone" title="Wordpress-thesis-theme-general-options" src="http://wordpressing.info/wp-content/uploads/2010/03/Wordpress-thesis-theme-general-options.png" alt="" width="452" height="303" /></p>
<p>Make that also 3 posts. This way you have your general WordPress settings and you Thesis Theme WordPress setting &#8220;in sync&#8221;.</p>
<p>Happy Blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressing.info/no-teasers-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

