<?xml version="1.0" encoding="UTF-8"?>
<rss 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Character bbPress Theme</title>
	
	<link>http://www.character-theme.com</link>
	<description>Character — The “Most Powerful” bbPress Premium Theme in the World!</description>
	<lastBuildDate>Fri, 14 May 2010 18:20:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CharacterBbpressTheme" /><feedburner:info uri="characterbbpresstheme" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><itunes:explicit>no</itunes:explicit><itunes:subtitle>Character — The “Most Powerful” bbPress Premium Theme in the World!</itunes:subtitle><item>
		<title>How to use hooks in the Character bbPress Theme</title>
		<link>http://feedproxy.google.com/~r/CharacterBbpressTheme/~3/7bx1JDDQvFo/how-to-use-hooks-in-the-character-bbpress-theme</link>
		<comments>http://www.character-theme.com/how-to-use-hooks-in-the-character-bbpress-theme#comments</comments>
		<pubDate>Fri, 14 May 2010 10:58:57 +0000</pubDate>
		<dc:creator>Shivanand Sharma</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.character-theme.com/?p=93</guid>
		<description><![CDATA[Welcome to another tutorial on the Character bbPress theme. Character theme is extensively customizable, more so because of the hooks we&#8217;ve incorporated in the templates. In simple language hooks are like events to which you can attach your custom functionality. For example you can have your custom function called/executed whenever the footer of the theme [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">W</span>elcome to another tutorial on the Character bbPress theme. Character theme is extensively customizable, more so because of the hooks we&#8217;ve incorporated in the templates. In simple language hooks are like events to which you can attach your custom functionality. For example you can have your custom function called/executed whenever the footer of the theme is rendered. This no the actual definition or description of hooks but this is pretty much what happens when you use hooks. Check out our previous article for <a href="http://www.character-theme.com/hooks-reference-character-theme-bbpress">a list of all the hooks in the Character theme</a>.</p>
<p>Generally your custom functions can be added directly to a themes templates or the functions file. However Character is a theme which keeps things organised so that the code is easy to edit, maintain and customize. All your custom functions will go into the <code>user_functions.php</code> file under the <code>user</code> directory of Character. That way all your customizations will be at one place where you&#8217;ll be able to edit them or back them up easily. Now let&#8217;s start with an example usage of a hook. Let&#8217;s try to add a link to the navigation menu (which is right above the header). As you know from the list of the hooks in Character, one of the hooks is &#8216;ch_hook_last_nav_item&#8217; and it fires after the last link in the header. We are going to attach (the right verb is &#8216;hook&#8217;) a custom PHP function to this hook to display this link. Paste the following in your user_functions.php file:</p>
<pre><code>function show_blog_url() {
 ?&gt;
 &lt;li&gt;&lt;a href="http://www.binaryturf.com"&gt;Binary Turf&lt;/a&gt;&lt;/li&gt;
 &lt;?php
 }

add_action('ch_hook_last_nav_item','show_blog_url','11');</code></pre>
<p>The last line starting with <a href="http://codex.wordpress.org/Function_Reference/add_action" target="_blank">add_action</a> attaches our custom function &#8217;show_blog_url&#8217; to the hook &#8216;ch_hook_last_nav_item&#8217;. The &#8216;11&#8242; stands for priority, so if multiple functions are hooked to the same hook, the highest priority is given to the one with a priority of &#8216;1&#8242;. So this function &#8217;show_blog_url&#8217; executes whenever the hook &#8216;ch_hook_last_nav_item&#8217; is triggered (and it triggers every time the header navigation menu is displayed). You can use this example to display your blog&#8217;s url or homepage to your forums. To summarize, here&#8217;s what you need to do step-by-step in order to customize Character.</p>
<ol>
<li>Define and understand your objective.</li>
<li>Create your custom function which will create the functionality you require (like &#8217;show_blog_url&#8217; in the above example).</li>
<li>Attach it to the right hook using &#8216;add_action&#8217; (as in the last line of the above code).</li>
</ol>
<p>Suggestions and feedback are welcome. Questions go to the <a href="http://www.binaryturf.com/forum/forum/character-theme-for-bbpress" target="_blank">forums</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=7bx1JDDQvFo:T1IeZAdFJCQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=7bx1JDDQvFo:T1IeZAdFJCQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=7bx1JDDQvFo:T1IeZAdFJCQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=7bx1JDDQvFo:T1IeZAdFJCQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=7bx1JDDQvFo:T1IeZAdFJCQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/CharacterBbpressTheme/~4/7bx1JDDQvFo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.character-theme.com/how-to-use-hooks-in-the-character-bbpress-theme/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.character-theme.com/how-to-use-hooks-in-the-character-bbpress-theme</feedburner:origLink></item>
		<item>
		<title>Hooks Reference: Character Theme &amp; bbPress</title>
		<link>http://feedproxy.google.com/~r/CharacterBbpressTheme/~3/-JucU-kIFAw/hooks-reference-character-theme-bbpress</link>
		<comments>http://www.character-theme.com/hooks-reference-character-theme-bbpress#comments</comments>
		<pubDate>Wed, 28 Apr 2010 08:24:12 +0000</pubDate>
		<dc:creator>Shivanand Sharma</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.character-theme.com/?p=85</guid>
		<description><![CDATA[Here&#8217;s a reference of the hooks in Character bbPress theme as of version 1.0

ch_hook_before_html: After the opening &#60;body&#62; tag.
 ch_hook_after_html: Before the closing &#60;/body&#62; tag.
ch_hook_before_header: Before the div#header opens.
ch_hook_after_header: After the div#header closes.
ch_hook_before_title: Before the #logo opens.
ch_hook_after_title: After the #tagline closes.
ch_hook_before_content_box: Before div#content opens.
ch_hook_after_content_box: After div#content closes.
ch_hook_first_nav_item: Before the first li in .menu (the header [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">H</span>ere&#8217;s a reference of the hooks in Character bbPress theme as of version 1.0</p>
<ul>
<li><strong>ch_hook_before_html</strong>: After the opening <code>&lt;body&gt;</code> tag.</li>
<li> <strong>ch_hook_after_html</strong>: Before the closing <code>&lt;/body&gt;</code> tag.</li>
<li><strong>ch_hook_before_header</strong>: Before the <code>div#header</code> opens.</li>
<li><strong>ch_hook_after_header</strong>: After the <code>div#header</code> closes.</li>
<li><strong>ch_hook_before_title</strong>: Before the <code>#logo</code> opens.</li>
<li><strong>ch_hook_after_title</strong>: After the <code>#tagline</code> closes.</li>
<li><strong>ch_hook_before_content_box</strong>: Before <code>div#content</code> opens.</li>
<li><strong>ch_hook_after_content_box</strong>: After <code>div#content closes.</code></li>
<li><strong>ch_hook_first_nav_item</strong>: Before the first <code>li</code> in .menu (the header menu).</li>
<li><strong>ch_hook_last_nav_item</strong>: After the last <code>li</code> in .menu but before <code>li.rss</code> (the header menu).</li>
<li><strong>ch_hook_before_content</strong>: After <code>div#content</code> opens.</li>
<li><strong>ch_hook_after_content</strong>: Before <code>div#content</code> closes.</li>
<li><strong>ch_hook_before_sidebars</strong>: After <code>div#sidebars</code> opens.</li>
<li><strong>ch_hook_before_widgets</strong>: After <code>ul.sidebar_list</code> opens.</li>
<li><strong>ch_hook_after_widgets</strong>: Before <code>ul.sidebar_list</code> closes.</li>
<li><strong>ch_hook_after_sidebars</strong>: Before <code>div#sidebars</code> closes.</li>
<li><strong>ch_hook_before_footer</strong>: Before <code>div#footer</code> opens.</li>
<li><strong>ch_hook_footer</strong>: First thing inside <code>div#footer</code></li>
<li><strong>ch_hook_after_footer</strong>: After <code>div#footer</code> closes.</li>
<li><strong>ch_hook_first_footernav_item</strong>: After #footer_menu <code>div#footer</code> opens.</li>
<li><strong>ch_hook_last_footernav_item</strong>: Before #footer_menu <code>div#footer</code> opens.</li>
<li><strong>ch_hook_before_headline</strong>: Varies. Mostly this fires right after <code>div.headline</code> tag opens. Set the Debug option to &#8220;On&#8221; to verify the location of this hook on individual pages.</li>
<li><strong>ch_hook_after_headline</strong>: Varies. Mostly this fires right before <code>div.headline</code> tag closes. Set the Debug option to &#8220;On&#8221; to verify the location of this hook on individual pages.</li>
<li><strong>ch_hook_before_topic_headline</strong>: Fires on the Topic page right after <code>ch_hook_before_headline</code>.</li>
<li><strong>ch_hook_after_topic_headline</strong>: Fires on the Topic page right before <code>ch_hook_after_headline</code>.</li>
<li><strong>ch_hook_topicinfo</strong>: Fires on the Topic page inside <code>div.infobox</code>. Used to attach the topic info into the sidebar.</li>
<li><strong>ch_hook_before_post</strong>: Fires before <code>div.threadauthor</code> on Topic page.</li>
<li><strong>ch_hook_after_post</strong>: Fires after <code>div.threadpost</code> on Topic page.</li>
<li><strong>ch_hook_before_post_meta</strong>: Fires after <code>div.threadauthor</code> opens; on Topic page only.</li>
<li><strong>ch_hook_after_post_meta</strong>: Fires before <code>div.threadauthor</code> closes; on Topic page only.</li>
<li><strong>ch_hook_404_title</strong>: Fires on 404 template/pages only. Used to attach 404 page title to the 404 error pages.</li>
<li><strong>ch_hook_404_content</strong>: Fires on 404 template/pages only. Used to attach 404 page content to the 404 error pages. this is the only child of <code>div.container_404</code>.</li>
<li><strong>ch_hook_postform_field</strong>: Fires on the post porm after the post form title. Can be used to attach additional fields to the post form.</li>
<li><strong>ch_hook_postform</strong>: Fires right before the &#8216;post_form&#8217; hook. This is before the submit button on the post form.</li>
<li><strong>oip_login</strong>: Fires on the login page only if OpenID Plus plugin is installed.</li>
<li><strong>post_post_form</strong>: Fires after the post form.</li>
<li><strong>before_pos_n</strong>: Fires on the Topic pages before the post content (text) of every post. Substitute n for the post position (which can be retreived by get_post_position() bbPress template function). Thus you can use it like <code>before_pos_4</code> to attach AdSense before the content of every topic page&#8217;s 4th post&#8217;s.</li>
<li><strong>after_pos_n</strong>: Fires on the Topic pages after the post content (text) of every post. Substitute n for the post position (which can be retreived by get_post_position() bbPress template function). Thus you can use it like <code>after_pos_4</code> to attach AdSense after the content of every topic page&#8217;s 4th post&#8217;s.</li>
<li><strong>after_post_n</strong>: Fires on the Topic pages after the <code>div.threadpost</code> of every post. Substitute n for the post position (which can be retreived by get_post_position() bbPress template function). Thus you can use it like <code>after_post_4</code> to attach AdSense after every topic page&#8217;s 4th post&#8217;s.</li>
</ul>
<h3>Bonus bbPress Hooks</h3>
<ul>
<li><strong>post_form</strong>: Fires right before the submit button on the post form.</li>
<li><strong>edit_form_pre_post</strong>: Fires before <code>#post-form-post-container</code> on the edit form.</li>
<li><strong>topicmeta</strong>: Fires after the topic meta block.</li>
<li><strong>extra_profile_info</strong>: Fires on the registration form before the submit button. Can be used to attach extra fields to the registration form.</li>
<li><strong>bb_foot</strong>: Fires after the bbPress footer.</li>
<li><strong>post_form_pre_post</strong>: Fires before the <code>#post-form-post-container</code>.</li>
<li><strong>under_title</strong>: Fires after the topic title.</li>
<li><strong>tag_above_table</strong>: Fires before the topics table when viewing the posts on the single tag page.</li>
<li><strong>tag_below_table</strong>: Fires after the topics table when viewing the posts on the single tag page.</li>
</ul>
<p>With all these hooks, customizing the Character bbPress theme is never an issue. You can customize it extensively or even turn bbPress into a web application! <a href="http://feeds.feedburner.com/CharacterBbpressTheme">Subscribe to the RSS</a> and watch this space for a small tutorial on how to use hooks.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=-JucU-kIFAw:pzI0kca3pXc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=-JucU-kIFAw:pzI0kca3pXc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=-JucU-kIFAw:pzI0kca3pXc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=-JucU-kIFAw:pzI0kca3pXc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=-JucU-kIFAw:pzI0kca3pXc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/CharacterBbpressTheme/~4/-JucU-kIFAw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.character-theme.com/hooks-reference-character-theme-bbpress/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.character-theme.com/hooks-reference-character-theme-bbpress</feedburner:origLink></item>
		<item>
		<title>Troubleshooting Character Theme and bbPress</title>
		<link>http://feedproxy.google.com/~r/CharacterBbpressTheme/~3/4-gCkgyZxdQ/troubleshooting-character-theme-and-bbpress</link>
		<comments>http://www.character-theme.com/troubleshooting-character-theme-and-bbpress#comments</comments>
		<pubDate>Sat, 24 Apr 2010 15:45:38 +0000</pubDate>
		<dc:creator>Shivanand Sharma</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.character-theme.com/?p=80</guid>
		<description><![CDATA[Here are a few tips just in case bbPress or other technologies play tricks with you. As we find more issues we&#8217;ll keep updating this page. If you know of some common problems and solutions please report in the comments section.
The bbPress forum gets broken when I activate Character (or some other theme). What can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">H</span>ere are a few tips just in case bbPress or other technologies play tricks with you. As we find more issues we&#8217;ll keep updating this page. If you know of some common problems and solutions please report in the comments section.</p>
<p class="note">The bbPress forum gets broken when I activate Character (or some other theme). What can I do?</p>
<p>This is mostly caused by incorrect theme permissions. Follow the <a href="http://www.character-theme.com/how-to-install-setup-character">installation instructions</a> precisely and treat them as a checklist. Once you&#8217;ve gotten so far verify the following:</p>
<ol>
<li>Your custom theme should be installed under the &#8220;my-templates&#8221; folder. If it&#8217;s not there create one.</li>
<li>The &#8220;my-templates&#8221; folder (and any other subfolders) should have &#8220;755&#8243; permissions. All the files under &#8220;my-templates&#8221; folder and sub-folders should have &#8220;644&#8243; permissions.</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=4-gCkgyZxdQ:NTzYrrG2_5g:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=4-gCkgyZxdQ:NTzYrrG2_5g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=4-gCkgyZxdQ:NTzYrrG2_5g:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=4-gCkgyZxdQ:NTzYrrG2_5g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=4-gCkgyZxdQ:NTzYrrG2_5g:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/CharacterBbpressTheme/~4/4-gCkgyZxdQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.character-theme.com/troubleshooting-character-theme-and-bbpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.character-theme.com/troubleshooting-character-theme-and-bbpress</feedburner:origLink></item>
		<item>
		<title>How to Install &amp; Setup Character</title>
		<link>http://feedproxy.google.com/~r/CharacterBbpressTheme/~3/SUL_hto7D3o/how-to-install-setup-character</link>
		<comments>http://www.character-theme.com/how-to-install-setup-character#comments</comments>
		<pubDate>Mon, 19 Apr 2010 17:28:14 +0000</pubDate>
		<dc:creator>Shivanand Sharma</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.character-theme.com/?p=50</guid>
		<description><![CDATA[Installing Character is easy and just like the installation of any other bbPress theme. Here&#8217;s a quick step-by-step walk-through.

Download and extract Character to any folder on your hard-drive. This should create a folder &#8220;character&#8221; with all the templates inside it .
Verify that there&#8217;s a folder &#8220;my-template&#8221; in the root of your bbPress installation directory on [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">I</span>nstalling Character is easy and just like the installation of any other bbPress theme. Here&#8217;s a quick step-by-step walk-through.</p>
<ol>
<li>Download and extract Character to any folder on your hard-drive. This should create a folder &#8220;character&#8221; with all the templates inside it .</li>
<li>Verify that there&#8217;s a folder &#8220;my-template&#8221; in the root of your bbPress installation directory on the server with permissions set to &#8220;755&#8243;. If not then create it. Verify the permissions to be &#8220;755&#8243;.</li>
<li>Upload the &#8220;character&#8221; folder containing all the theme&#8217;s files on the hard-drive to the &#8220;my-templates&#8221; folder on your server.</li>
<li>Log into your bbPress forum with the keymaster/admin account. Go to Administration &gt; Appearance and activate Character.</li>
<li>Once activated you should see the &#8220;Character&#8221; Options menu. Click on it to setup the options.</li>
</ol>
<h3>Setting up the options</h3>
<p>Setting up the options is easy too. The first time you install (or upgrade) Character you must visit the options panel and save the options (even if using the default values), This makes sure that the options are created and saved to the database or upgraded in case of an upgrade.</p>
<ol>
<li>Navigate to the Character Options page.</li>
<li>If you are activating Character for the first time, you&#8217;ll be greeted by a welcome message. Click &#8220;Next&#8221; to save the default options.</li>
<li>Most of the options are self-explanatory and may vary in each release. Each option/setting is accompanied by a help text/tip on the right column. Here&#8217;s a summary of the options as they exist in version 1.0.</li>
</ol>
<ul>
<li>Headings Font sets the font-face for the headings and titles.</li>
<li>Body Font sets the font-face used in the body content text.</li>
<li>Google Search: If you want to Integrate Google Search, you&#8217;ll first need to create a Google Custom Search Engine through &lt;a href=&#8221;http://www.google.com/cse&#8221; target=&#8221;_blank&#8221;&gt;Google CSE&lt;/a&gt; or from within your AdSense account under the &#8220;AdSense for Search&#8221; option. Once you&#8217;ve done that, you can copy and paste the code into the Google Search option. This shall place the Google Search Box unit into the sidebar. This is highly recommended as most webmasters agree that Google Search is a more powerful search tool than most other search tools.</li>
<li>Feedburner URL: If you want to use Feedburner with your bbPress Forum&#8217;s feed, you&#8217;ll first need to burn the feed into your Feedburner account. The bbPress feed url is mentioned to the right of this setting which you can copy and use to burn the Feedburner feed. Once you have the feedburner url of your feed you can place the same into the Feedurner URL setting of Character and your forum&#8217;s main feed will be redirected through feedburner. (The Feedburner integration uses true redirection — 301 — and existing uses subscribed to your old feed shall be redirected to the Feedburner feed).</li>
<li>Header Scripts: You can include any header scripts, links or CSS using the &#8220;Header Scripts&#8221; options.</li>
<li>Footer Scripts: You can include any footer scripts, links or CSS using the &#8220;Header  Scripts&#8221; options.</li>
<li>Footer Note: If you want you can place a footer note on your bbPress forum footer. Using this option you may want to display a copyright notice or custom attribution text etc.</li>
<li>SEO Options —
<ul>
<li>Meta Description: Place a description of your site here. This is the snippet that Google Search displays in the SERPS when your site appears in them.</li>
<li>Meta Keywords: Enter the keywords related to your forum/content.</li>
<li>Enable Canonical Links: This is used to attach the canonical link element to the page head.</li>
<li>Enable Automatic Meta Descriptions: This option automatically generates a description meta tag depending on the content of the topic or the current forum page. This option overrides the &#8220;Meta Description&#8221; option except for the front-page.</li>
<li>Enable Automatic Meta Keywords: This option automatically generates a keywords meta tag depending on  the content of the topic or the current forum page. This option  overrides the &#8220;Meta Keywords&#8221; option except for the front-page.</li>
<li>NoIndex Non-content pages: This option adds a meta robots element with the noindex property to pages like a forums page, sub-forums page, user profile page, or a category page. These pages are nothing more than a listing of the sub-forums or topics and thus can be safely noindex-ed while the actual content — the topic-threads are indexed.</li>
</ul>
</li>
<li>Post Position: During the course of moderating spam posts or unwanted posts and deleting them, you may find that the subsequent posts in the thread are not assigned the new (correct) post count. This option sets the correct position for the posts that appear after any user-post is deleted. (The post-position is important for certain custom hooks which fire on every post. These come in handy when you want to attach custom content like ad-banner or AdSense ads on or after every n-th post.)</li>
<li>Advanced Options: most of these options are for troubleshooting purposes. The Disable &#8220;user_functions.php&#8221; option disables any custom PHP code used to customize the forum. The Disable user.css option disables any custom styles. Turning the Debug option to ON displays additional debug info on the options panel. In addition it also displays (most of) the custom hooks on the site, thus it&#8217;s use is only recommended for advanced users.</li>
</ul>
<p>As you see Character is an extremely powerful, SEO&#8217;d  and highly customizable theme. It&#8217;s a complete framework that lets you tweak and customize your forum to harness the real power of bbPress. Now your forum is what you want it to be.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=SUL_hto7D3o:a4gQFE_3JGA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=SUL_hto7D3o:a4gQFE_3JGA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=SUL_hto7D3o:a4gQFE_3JGA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=SUL_hto7D3o:a4gQFE_3JGA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=SUL_hto7D3o:a4gQFE_3JGA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/CharacterBbpressTheme/~4/SUL_hto7D3o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.character-theme.com/how-to-install-setup-character/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.character-theme.com/how-to-install-setup-character</feedburner:origLink></item>
		<item>
		<title>Know your Character Theme Membership Benefits</title>
		<link>http://feedproxy.google.com/~r/CharacterBbpressTheme/~3/gMxuebBibDs/know-your-character-theme-membership-benefits</link>
		<comments>http://www.character-theme.com/know-your-character-theme-membership-benefits#comments</comments>
		<pubDate>Mon, 19 Apr 2010 16:30:28 +0000</pubDate>
		<dc:creator>Shivanand Sharma</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.character-theme.com/?p=45</guid>
		<description><![CDATA[When you sign-up for Character, you are entitled to several benefits. While you use Character, it&#8217;s good to know what these benefits are and how you can make use of them:
Support Forums
When you sign-up for Character, you get access to the premium membership of Binary Turf Support Forums — you have access to the support [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">W</span>hen you sign-up for Character, you are entitled to several benefits. While you use Character, it&#8217;s good to know what these benefits are and how you can make use of them:</p>
<h3>Support Forums</h3>
<p>When you sign-up for Character, you get access to the premium membership of Binary Turf Support Forums — you have access to the support community helping out each other with a responsive (official) support team. If you have an issue with Character we fix it for you — on priority.</p>
<h3>Free Lifetime Upgrades</h3>
<p>New versions of Character are made available to you free of cost.</p>
<h3>Latest Announcements</h3>
<p>You have access to the latest announcements, bug reports and fixes that are officially announced or reported by other users.</p>
<h3>Free RSS Subscriptions</h3>
<p>You can get all these updated delivered to you via RSS or email. This comes handy when there&#8217;s any important announcement or security release.</p>
<p>Not only this, we also attend to your feedback and suggestions and try to incorporate them into the next release after establishing priority.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=gMxuebBibDs:90XzMZnWccc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=gMxuebBibDs:90XzMZnWccc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=gMxuebBibDs:90XzMZnWccc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=gMxuebBibDs:90XzMZnWccc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=gMxuebBibDs:90XzMZnWccc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/CharacterBbpressTheme/~4/gMxuebBibDs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.character-theme.com/know-your-character-theme-membership-benefits/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.character-theme.com/know-your-character-theme-membership-benefits</feedburner:origLink></item>
		<item>
		<title>Character version 1.0 released</title>
		<link>http://feedproxy.google.com/~r/CharacterBbpressTheme/~3/ZQo8uTlyuyY/character-version-1-0-released</link>
		<comments>http://www.character-theme.com/character-version-1-0-released#comments</comments>
		<pubDate>Tue, 23 Mar 2010 19:54:17 +0000</pubDate>
		<dc:creator>Shivanand Sharma</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://character-theme.com/?p=1</guid>
		<description><![CDATA[We are pleased to announce the initial release of the Character bbPress Theme Framework. This initial version took more than a month to be developed from scratch. From creating a template system, a perfect and customizable layout, typography, options panel, and then to beta testing and release, the journey has been filled with excitement.
Character is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We are pleased to announce the initial release of the Character bbPress Theme Framework. This initial version took more than a month to be developed from scratch. From creating a template system, a perfect and customizable layout, typography, options panel, and then to beta testing and release, the journey has been filled with excitement.</p>
<p>Character is the only premium bbPress theme as of this date. And with Character we wish to extend all its power to you — the forum administrators, webmasters and bbPress theme developers. Take a look at <a href="/">the features</a> and you&#8217;ll realize the sheer power of running Character on your bbPress forum. From SEO, customization, integration and beyond <strong>—</strong> we&#8217;ve taken care of it all <strong>—</strong> with attention to detail and a professional architecture.</p>
<p>Going forward we are going to update this site with Character tips, tricks and tutorials regularly. With Character one thing is clear <strong>—</strong> <strong>you are in complete control</strong> of your bbPress forum. If you haven&#8217;t tried Character now would be the right time to <a href="http://www.binaryturf.com/forum/members/signup.php">claim your copy of Character</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=ZQo8uTlyuyY:Yrm5UDsOdcs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=ZQo8uTlyuyY:Yrm5UDsOdcs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=ZQo8uTlyuyY:Yrm5UDsOdcs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?a=ZQo8uTlyuyY:Yrm5UDsOdcs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/CharacterBbpressTheme?i=ZQo8uTlyuyY:Yrm5UDsOdcs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/CharacterBbpressTheme/~4/ZQo8uTlyuyY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.character-theme.com/character-version-1-0-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.character-theme.com/character-version-1-0-released</feedburner:origLink></item>
	<media:rating>nonadult</media:rating></channel>
</rss><!-- Dynamic page generated in 0.259 seconds. --><!-- Cached page generated by WP-Super-Cache on 2011-10-21 00:12:25 -->

