<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums User Favorites: tobias.snall</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 19 Jun 2013 14:19:11 +0000</pubDate>

<item>
<title>helgatheviking on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24736</link>
<pubDate>Sun, 08 Jan 2012 19:05:09 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24736@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;not familiar enough w/ autofocus to help further.  what i posted earlier WILL kill the default sidebar in any child theme.  so if you still have a sidebar it might be something that autofocus is creating.  &#60;/p&#62;
&#60;p&#62;also, the php function will not magically change your css to make the pages full width.
&#60;/p&#62;</description>
</item>
<item>
<title>tobias.snall on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24733</link>
<pubDate>Sun, 08 Jan 2012 15:19:49 +0000</pubDate>
<dc:creator>tobias.snall</dc:creator>
<guid isPermaLink="false">24733@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I get that 'whatever' refers to a page, hence i renamed it. Tried your solution aswell, nothing will do the trick. I actually manage to figure out that code by myself, but since it didn't work I just assumed i were wrong. I'm not a coder and I don't really get PHP yet, I'm a designer who really like problem solving. I usually manage to figure out HTML and CSS by myself but this is just to complex for me. I'm glad you were willing too help out though.&#60;/p&#62;
&#60;p&#62;/T
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24724</link>
<pubDate>Sun, 08 Jan 2012 02:02:01 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24724@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yes and yes it goes in your child theme's (so autofocus i guess) functions.php.  and 'not working' possibly means that autofocus also is filtering the thematic sidebar OR rather likely, you don't have a page called 'whatever' where the sidebar would actually be OFF so it is always ON.  &#60;/p&#62;
&#60;p&#62;&#34;logic&#34; is just a fancy way of saying IF statements (IF/ELSE and also FOR, or WHILE)&#60;/p&#62;
&#60;p&#62;wordpress conditional tags:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Conditional_Tags&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Conditional_Tags&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;so removing the conditional logic:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_sidebar() {
   return FALSE;
}
add_filter(&#38;#39;thematic_sidebar&#38;#39;, &#38;#39;remove_sidebar&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;just trying to encourage to learn a little something about the process.  otherwise you are likely to ask the same things over and over.
&#60;/p&#62;</description>
</item>
<item>
<title>tobias.snall on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24722</link>
<pubDate>Sun, 08 Jan 2012 00:30:28 +0000</pubDate>
<dc:creator>tobias.snall</dc:creator>
<guid isPermaLink="false">24722@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I guess you are referring to this code snippet&#60;/p&#62;
&#60;p&#62;function remove_sidebar() {&#60;br /&#62;
if (!is_page('whatever')) {&#60;br /&#62;
return FALSE;&#60;br /&#62;
} else {&#60;br /&#62;
return TRUE;&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_sidebar', 'remove_sidebar');&#60;/p&#62;
&#60;p&#62;What do I remove and where do i place it? (I've tried placing it in functions.php, but that doesn't seem to do the trick)
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24721</link>
<pubDate>Sun, 08 Jan 2012 00:14:06 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24721@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;don't hhave time now to check into the old post or what i wrote there.  but if you want to kill the sidebar across the whole site then you simply don't use the conditional logic that chris wrote at programming.thematic4you.com
&#60;/p&#62;</description>
</item>
<item>
<title>tobias.snall on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24720</link>
<pubDate>Sat, 07 Jan 2012 23:59:31 +0000</pubDate>
<dc:creator>tobias.snall</dc:creator>
<guid isPermaLink="false">24720@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;To clarify,&#60;/p&#62;
&#60;p&#62;I've read this post &#60;a href=&#34;http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/&#34; rel=&#34;nofollow&#34;&#62;http://programming.thematic4you.com/2010/01/how-to-remove-the-sidebar-from-a-certain-page/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But i want to remote it from my entire website. And i just can't get it to work.&#60;/p&#62;
&#60;p&#62;Could anyone paste the code and where to put it? I would be truly thankful.&#60;/p&#62;
&#60;p&#62;/T
&#60;/p&#62;</description>
</item>
<item>
<title>tobias.snall on "Autofocus (child theme) custom post template"</title>
<link>http://themeshaper.com/forums/topic/autofocus-child-theme-custom-post-template#post-24719</link>
<pubDate>Sat, 07 Jan 2012 23:43:45 +0000</pubDate>
<dc:creator>tobias.snall</dc:creator>
<guid isPermaLink="false">24719@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have the same exakt problem as the guy who posted this &#60;a href=&#34;http://themeshaper.com/forums/topic/autofocus-pro-help#post-13038&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/autofocus-pro-help#post-13038&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I want a to expand the content area for a single post to be fullpage. (removing the sidebar). I would also like to remove everything else below the content of the post (comments etc...) &#60;/p&#62;
&#60;p&#62;I've installed the custom post template plugin. But i need help with actual coding. How do I remove these objects?&#60;/p&#62;
&#60;p&#62;Maybe helgatheviking can help me with this one since she were involved in the other post.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
