<?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>Blogussion &#187; customize thesis</title>
	<atom:link href="http://www.blogussion.com/tag/customize-thesis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogussion.com</link>
	<description>Blogging Discussion, Tips &#38; Tricks</description>
	<lastBuildDate>Wed, 08 Feb 2012 07:48:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>4 Great Ways I Customized my Thesis Theme</title>
		<link>http://www.blogussion.com/general/4-ways-customized-thesis-theme/</link>
		<comments>http://www.blogussion.com/general/4-ways-customized-thesis-theme/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 23:31:03 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[customize thesis]]></category>
		<category><![CDATA[diythemes]]></category>
		<category><![CDATA[thesis theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.blogussion.com/?p=4207</guid>
		<description><![CDATA[A tutorial where I list 4 popular Thesis customizations that were made on Blogussion.com.


Related posts:<ol><li>
<a href='http://www.blogussion.com/blogging-tips/mapping-out-a-new-blog-choosing-a-great-theme-and-some-killer-plugins/' rel='bookmark' title='Mapping out a new blog: Choosing a great theme and some killer plugins'>Mapping out a new blog: Choosing a great theme and some killer plugins</a></li>
<li>
<a href='http://www.blogussion.com/general/wrap-post-title-image/' rel='bookmark' title='How To: Wrap the post title around an image'>How To: Wrap the post title around an image</a></li>
<li>
<a href='http://www.blogussion.com/general/blogussion-thesis-makeover/' rel='bookmark' title='Blogussion Gets a Thesis Makeover'>Blogussion Gets a Thesis Makeover</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">Q</span>uite recently, <a href="http://www.blogussion.com/blog/blogussion-news/blogussion-thesis-makeover">Blogussion was upgraded</a> to the powerful Thesis WordPress Theme. After the release, I waited on getting some feedback on the theme. Most people loved it, some people hated it.</p>
<p>I got a lot of emails after the upgrade with questions on how to make some of the customizations I did, and some comments too. So I decided that because I am now addicted to Thesis and want it any blog I ever make, I now want to write about it. So I figured the first thing I would write about Thesis are the customizations I made on my own theme (which is very edited).</p>
<p><span id="more-4207"></span></p>
<h3>Before you read this&#8230;</h3>
<p>Before you read this post, there are some things I suggest you read if you have never worked with Thesis before. More specifically, regarding the hooks system Thesis uses.</p>
<p>I&#8217;m not going to lie, the way Thesis works coding wise will be confusing at first with the hook system it uses. But once you mess around with it, it&#8217;s the easiest thing in the world.</p>
<ul>
<li><a href="http://www.sugarrae.com/thesis-hooks-dummies-tutorial/">Hooks for Dummies</a></li>
<li><a href="http://diythemes.com/thesis/rtfm/hooks/">Thesis Hook Reference List</a> [Recommend you Bookmark this]</li>
<li><a href="http://diythemes.com/thesis/rtfm/customizing-with-hooks/">How to Customize Like a Pro with Theme Hooks</a></li>
<li><a href="http://diythemes.com/thesis/rtfm/default-hook-usage/">Default Hook Usage in Thesis</a> [Also bookmark worthy]</li>
<li><a href="http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/">Customizing Thesis with custom.css</a></li>
</ul>
<h4>DIYthemes Forum</h4>
<p>After you <a href="http://diythemes.com/?a_aid=499b722332330">buy Thesis</a>, you are granted special access to a Support forum consisting of thousands of Thesis users. I could not have made my Thesis theme what it was today without reading some of the knowledge on that forum, so be sure to use the forum as your go-to place for any Thesis information.</p>
<h3>1. Adding a cool post footer</h3>
<p>The thing that got the biggest response about the theme was the post footer. Check out the content immediately after this article if you don&#8217;t know what I mean by &#8220;post footer&#8221;.</p>
<p>I am going to show you how to create the same stuff I have in my post footer, except for the Post Highlights box.</p>
<p>So paste this code into <code>custom_functions.php</code></p>
<pre>function post_footer() {
	if (is_single())
	{
	?&gt;
	&lt;div class="postauthor"&gt;
		&lt;?php echo get_avatar( get_the_author_id() , 100 ); ?&gt;
		&lt;h4&gt;Article by &lt;a href="&lt;?php the_author_url(); ?&gt;"&gt;
		&lt;?php the_author_firstname(); ?&gt; &lt;?php the_author_lastname(); ?&gt;&lt;/a&gt;&lt;/h4&gt;
		&lt;p&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;
		&lt;p class="hlight"&gt;&lt;?php the_author_firstname(); ?&gt; has written &lt;span&gt;&lt;?php the_author_posts(); ?&gt;&lt;/span&gt; awesome articles for us.&lt;/p&gt;
	&lt;/div&gt;

	&lt;div id="similar"&gt;
		&lt;h3&gt;You May Also Be Interested In...&lt;/h3&gt;
		&lt;p&gt;Similar Posts Code Here&lt;/p&gt;
	&lt;/div&gt;

	&lt;div id="rightcol"&gt;
		&lt;div id="subscribe"&gt;
			&lt;h3&gt;Subscribe Now&lt;/h3&gt;
			&lt;p&gt;If you enjoyed this post, you will definitely enjoy our others. Subscribe to the feed to get instantly updated for those awesome posts soon to come.&lt;/p&gt;
			&lt;ul&gt;
				&lt;li&gt;&lt;a href="FEED_URL_HERE"&gt;Subscribe to our RSS Feed&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href="FEED_URL_HERE"&gt;Subscribe for Email Updates&lt;/a&gt;&lt;/li&gt;
			&lt;/ul&gt;
		&lt;/div&gt;

		&lt;div id="custom"&gt;
			&lt;p&gt;Put whatever you want here!&lt;/p&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;?php
	}
}
	add_action('thesis_hook_after_post_box', 'post_footer');</pre>
<p>Here is the CSS too, if you want to build off of my style. Paste this in <code>custom.css</code>:</p>
<pre>/* AUTHOR BOX */
.custom #comments { clear: both; }
.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }
.postauthor p.hlight { font-size: 11px; text-transform: uppercase; }
.postauthor p.hlight span { color: #CB3131; font-size: 13px; font-style: italic; font-weight: bold; letter-spacing: 0.8px; }
/* BOXES */
#similar h3, #rightcol h3 { font-size: 1.8em; letter-spacing: normal; padding-top: 15px; }
#similar { float: left; width: 50%; }
#similar p { margin-bottom: 15px; padding: 10px 2.5em 10px 10px; }
#similar a { font-size: 1.4em; border-bottom: 1px solid #CB3131; line-height: 1.5em; }
#similar a:hover { border: 0; }
#similar h3 { padding-left: 10px; }
#similar span.date { color: #888; letter-spacing: 1px; text-transform: uppercase; }
#rightcol { float: right; width: 50%; }
#rightcol p { font-size: 14px; line-height: 1.5em; padding: 10px 2.5em 10px 0;  }
#rightcol h3 { padding: 0; }
#rightcol ul { list-style-position: inside;  list-style-type: square; margin-left: 1em; }
#rightcol ul a { border-bottom: 1px solid #CB3131; font-size: 14px; }
#rightcol ul a:hover { border: 0; }
#rightcol li { margin-bottom: 10px; }
#subscribe { background: #FFFBCC; border: 1px solid #E6DB55; float: right; margin: 15px 15px 0 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
#custom { background: #E4F2FD; border: 1px solid #C6D9E9; float: right; margin: 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }</pre>
<h3>2. Custom Pages</h3>
<p>If you want to edit the Thesis 404 page or Archives page like I have, check out the codes I used:</p>
<h4>Archives Page</h4>
<p>The default Archives page that comes with Thesis is great, but I want to do more with mine (still under construction by the way). Here is the code you can use to edit the Archives template from <code>custom_functions.php</code></p>
<pre>function new_archives() { ?&gt;
	&lt;p&gt;New Archives Page&lt;/p&gt;
&lt;?php }

remove_action('thesis_hook_archives_template', 'thesis_archives_template');
add_action('thesis_hook_archives_template', 'new_archives');</pre>
<h4>404 Page</h4>
<p>I got the following code from <a href="http://www.sugarrae.com/thesis-tutorial-custom-404/">Rae Hoffman (Suggarrae)</a>.</p>
<pre>function custom_thesis_404_title() {
?&gt;
YOUR 404 PAGE HEADING HERE
&lt;?
}

remove_action(’thesis_hook_404_title’, ’thesis_404_title’);
add_action(’thesis_hook_404_title’, ’custom_thesis_404_title’);

function custom_thesis_404_content() {
?&gt;
&lt;p&gt;WHATEVER YOU WANT YOUR 404 PAGE TO SAY HERE&lt;/p&gt;
&lt;?
}

remove_action(’thesis_hook_404_content’, ’thesis_404_content’);
add_action(’thesis_hook_404_content’, ’custom_thesis_404_content’);</pre>
<h3>3. Add Custom Info to Featured Post</h3>
<p>On the front page of the blog, there is one featured post followed by 14 teasers. I was able to add content to the bottom (such as the ShareThis button and Tweet This) of the featured post only, and this is how i did it:</p>
<pre>function featuredpost_content() {
	if (is_home())
	{
	?&gt;
		&lt;p&gt;Add whatever here&lt;/p&gt;
&lt;?php }
}
	add_action('thesis_hook_after_post', 'featuredpost_content');</pre>
<p>This may or not be useful if you don&#8217;t use featured posts on your Thesis blog.</p>
<h3>4. Add Thumbnails to &#8220;Popular Posts&#8221;, &#8220;Similar Posts&#8221;, &#8220;Recent Comments&#8221;, etc.</h3>
<p class="alert"><strong>Note:</strong> You will need to use any plugin from <a href="http://wordpress.org/extend/plugins/profile/robmarsh">Rob Marsh</a> to be able to do this.</p>
<p><img src="http://www.blogussion.com/wp-content/uploads/2009/04/poposts-thumbnails.png" alt="poposts-thumbnails" title="poposts-thumbnails" width="237" height="317" class="alignright size-full wp-image-4262" />I used Custom Fields for this. if you don&#8217;t know how to use custom fields, read <a href="http://codex.wordpress.org/Using_Custom_Fields">this</a> article at the WordPress Codex.</p>
<p>If you use the teasers Thesis has on your blog and have 66&#215;66 images then most of the work will already be done for you. If not, create a custom field and paste your image URL&#8217;s into it.</p>
<p>So if you use Rob Marsh&#8217;s &#8220;Popular Posts&#8221; plugin for example, go to <em>Settings &rarr; Popular Posts &rarr; Output</em> and paste this code into the very first input box &#8220;Output Template&#8221;:</p>
<pre>&lt;p&gt;
&lt;img src="{custom:thesis_thumb}" width="50" height="50" alt="" /&gt;{link}
&lt;div class="clear"&gt;&lt;/div&gt;
&lt;/p&gt;</pre>
<p>You may also need to add this to your CSS, unless you already have it. You need a <code>clear</code> in the code, or the output won&#8217;t look right.</p>
<pre>.clear { clear: both }</pre>
<p>And to add that to the sidebar, you could either copy and paste it into your Widgets panel, or if you chose not to use Widgets you can use this code to do it:</p>
<pre>function PopPosts() { ?&gt;
	&lt;?php popular_posts(); ?&gt;
&lt;?php }
	add_action('<strong>SEE BELOW OPTIONS</strong>', 'PopPosts');</pre>
<p>Since Thesis has a variety of sidebar hooks, you can choose one of the below to replace with &#8220;SEE BELOW OPTIONS&#8221; above:</p>
<ul>
<li>thesis_hook_before_sidebar_1</li>
<li>thesis_hook_after_sidebar_1</li>
<li>thesis_hook_before_sidebar_2</li>
<li>thesis_hook_after_sidebar_2</li>
</ul>
<p>So Thesis really isn&#8217;t hard at all to mess around with, you just need to give it a little time for you to fully understand it. Hopefully by seeing the customizations I shared with you will make you realize that. And if you are looking for a great Premium Theme, I am telling you that you cannot go wrong with <a href="http://diythemes.com/?a_aid=499b722332330">buying Thesis</a>.</p>


<p>Related posts:<ol><li><p><a href='http://www.blogussion.com/blogging-tips/mapping-out-a-new-blog-choosing-a-great-theme-and-some-killer-plugins/' rel='bookmark' title='Mapping out a new blog: Choosing a great theme and some killer plugins'>Mapping out a new blog: Choosing a great theme and some killer plugins</a></p></li>
<li><p><a href='http://www.blogussion.com/general/wrap-post-title-image/' rel='bookmark' title='How To: Wrap the post title around an image'>How To: Wrap the post title around an image</a></p></li>
<li><p><a href='http://www.blogussion.com/general/blogussion-thesis-makeover/' rel='bookmark' title='Blogussion Gets a Thesis Makeover'>Blogussion Gets a Thesis Makeover</a></p></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.blogussion.com/general/4-ways-customized-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>271</slash:comments>
		</item>
	</channel>
</rss>

