<?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 Tag: remove</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 04 Feb 2012 04:10:38 +0000</pubDate>

<item>
<title>hierophant on "How to remove "comment" box from Pages"</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-comment-box-from-pages#post-24021</link>
<pubDate>Thu, 01 Dec 2011 04:21:04 +0000</pubDate>
<dc:creator>hierophant</dc:creator>
<guid isPermaLink="false">24021@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK I got it. &#60;a href=&#34;http://wordpress.org/support/topic/remove-comment-field-for-selected-pages&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/remove-comment-field-for-selected-pages&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>hierophant on "How to remove "comment" box from Pages"</title>
<link>http://themeshaper.com/forums/topic/how-to-remove-comment-box-from-pages#post-24008</link>
<pubDate>Wed, 30 Nov 2011 08:35:33 +0000</pubDate>
<dc:creator>hierophant</dc:creator>
<guid isPermaLink="false">24008@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I could not locate any reference to this in the acamas forum posts.&#60;/p&#62;
&#60;p&#62;Title pretty much sums up what I wish to achieve. &#60;/p&#62;
&#60;p&#62;I suppose it will mean editing one of the files? Or perhaps adding something to the 'Variants&#34; file.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>cookieandkate on "Remove/ alter RSS Links from Source"</title>
<link>http://themeshaper.com/forums/topic/remove-alter-rss-links-from-source#post-23159</link>
<pubDate>Wed, 21 Sep 2011 04:14:53 +0000</pubDate>
<dc:creator>cookieandkate</dc:creator>
<guid isPermaLink="false">23159@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Actually, that won't work for Thematic .9.7.5 or above. I tried it on my blog and it didn't change anything. Here's a post that explains more: &#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-switch-rss-to-feedburner-in-thematic-0975#post-15839&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>middlesister on "Remove/ alter RSS Links from Source"</title>
<link>http://themeshaper.com/forums/topic/remove-alter-rss-links-from-source#post-22963</link>
<pubDate>Sun, 04 Sep 2011 10:48:34 +0000</pubDate>
<dc:creator>middlesister</dc:creator>
<guid isPermaLink="false">22963@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You can do it by filtering thematic_rss and thematic_show_commentsrss.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_comments_rss( $display ) {
    return FALSE;
}
add_filter(&#38;#39;thematic_show_commentsrss&#38;#39;, &#38;#39;remove_comments_rss&#38;#39;);

function my_feed_link( $content ) {
    $content = &#38;#39;YOUR LINK&#38;#39;;
    return $content;
}
add_filter(&#38;#39;thematic_rss&#38;#39;, &#38;#39;my_feed_link&#38;#39;  );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Put this in your child themes functions.php.
&#60;/p&#62;</description>
</item>
<item>
<title>Crawler on "Remove/ alter RSS Links from Source"</title>
<link>http://themeshaper.com/forums/topic/remove-alter-rss-links-from-source#post-22921</link>
<pubDate>Wed, 31 Aug 2011 13:08:04 +0000</pubDate>
<dc:creator>Crawler</dc:creator>
<guid isPermaLink="false">22921@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I am new to the forum but am really excited about Thematic and the Power Blog.&#60;br /&#62;
I run into a problem recently, which I m not able to solve by myself, perhaps someone can help me out.&#60;br /&#62;
When I look at my source code, I find two RSS links right below the meta tags:&#60;br /&#62;
&#60;code&#62;link rel=&#34;alternate&#34; type=&#34;application/rss+xml&#34; title=&#34;test blog &#38;raquo; Feed&#34; href=&#34;http://127.0.0.1/feed&#34;&#60;br /&#62;
link rel=&#34;alternate&#34; type=&#34;application/rss+xml&#34; title=&#34;test blog &#38;raquo; Kommentar Feed&#34; href=&#34;http://127.0.0.1/comments/feed&#34;&#60;/code&#62;&#60;br /&#62;
I cant figure out where these come from. I would like to remove the comments feed and change the &#34;normal&#34; feed to my feedburner url.&#60;br /&#62;
Can anyone point out how to do this? Im even not sure if these links originate in Thematic or the Power Blog..&#60;br /&#62;
Im running Thematic 0.9.7.7 and Power Blog 1.1&#60;br /&#62;
Thanks in advance
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove sidebar"</title>
<link>http://themeshaper.com/forums/topic/remove-sidebar#post-22535</link>
<pubDate>Wed, 03 Aug 2011 19:55:59 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22535@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@brcguy - all PHP code for your child theme goes in your child's functions.php
&#60;/p&#62;</description>
</item>
<item>
<title>brcguy on "Remove sidebar"</title>
<link>http://themeshaper.com/forums/topic/remove-sidebar#post-22532</link>
<pubDate>Wed, 03 Aug 2011 16:30:52 +0000</pubDate>
<dc:creator>brcguy</dc:creator>
<guid isPermaLink="false">22532@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Where do I place this code to remove the sidebar?  Thanks!&#60;br /&#62;
-D
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22439</link>
<pubDate>Tue, 26 Jul 2011 18:35:13 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">22439@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Okay, so I realized my above code was actually breaking the previous functionality, so clearly it wasn't working. I've tried coming at it from a different angle, using the previous function as a template and renaming the new function so that it wasn't a duplicate.&#60;/p&#62;
&#60;p&#62;Here is the code for the new attempt:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//Point Secondary Aside to new function
function change_widgetized_area_post($content) {
	$content[&#38;#39;Secondary Aside&#38;#39;][&#38;#39;function&#38;#39;]=&#38;#39;child_2nd_subsidiary_aside_post&#38;#39;;
return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;change_widgetized_area_post&#38;#39;);

//adjust where secondary aside displays
function child_2nd_subsidiary_aside_post() {
	global $post;

$meta_value = get_post_meta($post-&#38;gt;id, &#38;#39;kia_sidebar&#38;#39;);

	if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() &#124;&#124; $meta_value!=&#38;#39;hide&#38;#39; ) ) { //adjust logic on this line
		echo thematic_before_widget_area(&#38;#39;secondary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;secondary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;secondary-aside&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So, I believe I should be able to start tinkering with the actual logic and feel relatively sure that that everything is hooked up correctly, if not as elegantly as it probably could be. Again, any direction is greatly appreciated and thanks for everything you've helped me out with so far.
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22434</link>
<pubDate>Tue, 26 Jul 2011 16:56:57 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">22434@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I tried devin's code and couldn't get it to work, kept getting a critical error on the first non-comment line of code. I assume it works, as others seem to be happy with it in the comments. Not sure what's going on.&#60;/p&#62;
&#60;p&#62;I then switched to just using the custom field box. I have the name and meta as you have defined them and the code doesn't break the site, but it's not functioning.&#60;/p&#62;
&#60;p&#62;With my raggedy PHP skills this is what I have right now:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/Point Secondary Aside to new function
function change_widgetized_area($content) {
	$content[&#38;#39;Secondary Aside&#38;#39;][&#38;#39;function&#38;#39;]=&#38;#39;child_2nd_subsidiary_aside&#38;#39;;
	$content[&#38;#39;Secondary Aside&#38;#39;][&#38;#39;function&#38;#39;]=&#38;#39;child_2nd_subsidiary_aside_single&#38;#39;;
return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;change_widgetized_area&#38;#39;);

//adjust where secondary aside displays
function child_2nd_subsidiary_aside() {
	if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page(array (&#38;#39;parties&#38;#39;, &#38;#39;holidays&#38;#39;, &#38;#39;recipes&#38;#39;, &#38;#39;crafts&#38;#39;, &#38;#39;printables&#38;#39;, &#38;#39;educational&#38;#39;, &#38;#39;sitemap&#38;#39;, &#38;#39;holidays&#38;#39;, &#38;#39;1756&#38;#39;)) &#124;&#124; !is_single(&#38;#39;twocolumn&#38;#39;) ) )  { //adjust logic on this line
		echo thematic_before_widget_area(&#38;#39;secondary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;secondary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;secondary-aside&#38;#39;);
	}
}

//adjust where secondary aside displays
function child_2nd_subsidiary_aside_single() {
global $post;

$meta_value = get_post_meta($post-&#38;gt;id, &#38;#39;kia_sidebar&#38;#39;);

	if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() &#124;&#124; $meta_value!=&#38;#39;hide&#38;#39; ) ) { //adjust logic on this line
		echo thematic_before_widget_area(&#38;#39;secondary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;secondary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;secondary-aside&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It seems to me that the lines of PHP you provided are not meant stand on there own and if I knew the slightest about what I was doing, I'd know exactly how to make them talk to the existing code. This is my sorry attempt at that. Am I even on the right path?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22405</link>
<pubDate>Fri, 22 Jul 2011 15:49:40 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22405@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you'll definitely need extra info.. b/c you'll need to get the metabox value and test against IT.  you could do a fullblown meta box ( i use &#60;a href=&#34;farinspace.com/wpalchemy-metabox/&#34;&#62;WP Alchemy&#60;/a&#62; on almost every project) but it might be overkill for a radio input.  devin also put together a nice &#60;a href=&#34;http://wptheming.com/2010/08/custom-metabox-for-post-type/&#34;&#62;tutorial on basic metaboxes&#60;/a&#62; (its for custom post types but you can easily extract it to posts.  or you could just use a custom field if you don't care for a GUI.  &#60;/p&#62;
&#60;p&#62;you'll also need to global $post in your child_2nd_subsidiary_aside function i think.&#60;/p&#62;
&#60;p&#62;so assuming you are saving a meta value of 'hide' for the meta key 'kia_sidebar'. something like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//adjust where secondary aside displays
function child_2nd_subsidiary_aside() {
global $post;

$meta_value = get_post_meta($post-&#38;gt;id, &#38;#39;kia_sidebar&#38;#39;);

	if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() &#124;&#124; $meta_value!=&#38;#39;hide&#38;#39; ) ) { //adjust logic on this line
		echo thematic_before_widget_area(&#38;#39;secondary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;secondary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;secondary-aside&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;is_single('100') tests to see if you are on a post w/ the ID of 100.  it has nothing to do w/ meta.
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22404</link>
<pubDate>Fri, 22 Jul 2011 14:09:18 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">22404@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes, that is what I need to do. Cool tip.&#60;/p&#62;
&#60;p&#62;Does the conditional need additional logic to search for the meta value or should I just be able to plug that into !is_single('VALUE')? The WP codex page makes it seem as though these conditionals will except a wide variety of variable without further qualification, hopefully it is so in this case.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22394</link>
<pubDate>Thu, 21 Jul 2011 22:05:34 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22394@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;so you need to toggle whether the sidebar displays on a per post basis?  i did that one time w/ a metabox, so you could set a custom field or a metabox and capture some meta data and then test for that meta value in your conditional
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22393</link>
<pubDate>Thu, 21 Jul 2011 21:15:55 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">22393@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I tried that method, maybe I just got something wrong in the syntax. To clarify, we're only going to add a few of the many blog posts to this declaration. So some of them will have two columns but many of them will have three.&#60;/p&#62;
&#60;p&#62;I'll give this a shot.&#60;/p&#62;
&#60;p&#62;Thanks helga
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22392</link>
<pubDate>Thu, 21 Jul 2011 20:36:06 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22392@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;is there anywhere that you DO want the secondary-aside to display?  &#60;/p&#62;
&#60;p&#62;but i would have guessed&#60;/p&#62;
&#60;p&#62;if (is_active_sidebar('secondary-aside') &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() ) ) { &#60;/p&#62;
&#60;p&#62;should become&#60;/p&#62;
&#60;p&#62;if (is_active_sidebar('secondary-aside') &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() &#124;&#124; !is_single() ) ) {
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-22390</link>
<pubDate>Thu, 21 Jul 2011 19:58:28 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">22390@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey helga,&#60;/p&#62;
&#60;p&#62;My client has also requested that this feature be available on posts. I have played with the is_single conditional tag a bit, but I keep causing critical errors and I'm really sure how the syntax should work so that I can also define posts as having only two columns? Is there a simple fix for this?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>kinybird on "Should I use thematic? or simply adapt twentyten to my needs?"</title>
<link>http://themeshaper.com/forums/topic/should-i-use-thematic-or-simply-adapt-twentyten-to-my-needs#post-21661</link>
<pubDate>Mon, 06 Jun 2011 02:25:41 +0000</pubDate>
<dc:creator>kinybird</dc:creator>
<guid isPermaLink="false">21661@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am a newbie at customizing WordPress themes. I designed a website for a gallery and I just wanted to add an event calendar plugin in the home page and an image gallery in another page. &#60;/p&#62;
&#60;p&#62;I don't need the blogging stuff. I was trying to adapt my html code because I wanted it to be just as the one that I designed but I am getting really nervous about having to insert html code using functions.php because I think I'm modifying it too much. Also I commented some sections in the index.php(home.php) to get rid of the comments and loops.&#60;/p&#62;
&#60;p&#62;I don't know if this is the best option for me or if I'm following good practices. I am starting to think that thematic its too much for my needs right now.&#60;/p&#62;
&#60;p&#62;What do you think??
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21522</link>
<pubDate>Sat, 28 May 2011 16:22:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21522@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you're welcome.  will do!  don't forget to mark as resolved.
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21520</link>
<pubDate>Sat, 28 May 2011 15:34:50 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">21520@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Read your response, dropped in the code and it works like a charm.&#60;/p&#62;
&#60;p&#62;Please enjoy your wine.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
jhsizemore&#60;/p&#62;
&#60;p&#62;--&#60;/p&#62;
&#60;p&#62;For those in the future who may try to use this piece of code to accomplish something similar, &#60;/p&#62;
&#60;p&#62;Keep in mind that I was only trying to remove one sidebar. If you reference the other thread where helga posted similar code which addressed a problem dealing with two sidebars (http://themeshaper.com/forums/topic/alternating-sidebars-depending-on-homepages), then it seems like you will be able to cobble the two together, along with conditional tags which helga has discussed above, to accomplish what you need.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21518</link>
<pubDate>Sat, 28 May 2011 14:52:50 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21518@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ok- since the left sidebar (which i am presuming is the Primary Aside) is always on, we don't need to monkey with that.  we then point the secondary aside to its new function.  upon closer inspection i realized that you had an extra ['args'] in your attempt.  that is not where the 'function' parameter lives (it lives at $content['Secondary Aside']['function'] ) , so your function was never being called.  sharper eyes in the morning i guess.  this actually means you never even GOT to the point of testing your conditional logic, b/c your function was never being swapped into place.&#60;/p&#62;
&#60;p&#62;next we need to select some conditional logic.  this is about as much info as you'll ever need on conditional logic:&#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;i know i've read some complaints on here before about the codex being confusing, but still that is where the information is.  &#60;/p&#62;
&#60;p&#62;you also might need a little primer on PHP logic if you aren't familar:&#60;br /&#62;
&#60;a href=&#34;http://php.net/manual/en/language.operators.logical.php&#34; rel=&#34;nofollow&#34;&#62;http://php.net/manual/en/language.operators.logical.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;now to &#34;translate&#34; those 2 posts into &#34;show the secondary aside on anything that isn't a page&#34;&#60;/p&#62;
&#60;p&#62;the function that displays the aside by default has this bit of conditional logic:&#60;br /&#62;
if (is_active_sidebar('secondary-aside')) &#60;/p&#62;
&#60;p&#62;which only tests if there is a widget in the defined widget area.  well we want to run more tests... so we need to tack on an AND or the other way to write it &#38;#38;&#38;#38; (i dont honestly know the difference between AND and &#38;#38;&#38;#38; and they both probably work)&#60;/p&#62;
&#60;p&#62;you don't want it on any &#34;page&#34;.  so that says... ok let's test for a page with wordpress's is_page() logic, and let's use the NOT ! modifier to make it negative&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; !is_page() )&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if your front page is your blog... which would satisfy is_home() then you are done and the above would work just fine.  if your front page is an actual page and you'd like to still show the secondary aside then you must get a little trickier.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() ) )&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;what has happened here? the vertical pipes mean OR.  same as w/ the AND versus &#38;#38;&#38;#38; i don't really know if there is much difference.  if you are less familiar w/ php, OR is probably more readable.  anyway, with parens i've grouped (is_front_page() &#124;&#124; !is_page() ) so that if one of those is true, AND the sidebar is active, the secondary aside will display.  is_front_page() is how you test for the page that has been set to be the static home page.  &#60;/p&#62;
&#60;p&#62;since i don't know whether your home page is static or a blog i gave both options. &#60;/p&#62;
&#60;p&#62;i've left it with the assumption that you have a static home page, but you can scale it back if you aren't.&#60;/p&#62;
&#60;p&#62;the full function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//Point Secondary Aside to new function
function change_widgetized_area($content) {
	$content[&#38;#39;Secondary Aside&#38;#39;][&#38;#39;function&#38;#39;]=&#38;#39;child_2nd_subsidiary_aside&#38;#39;;
return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;change_widgetized_area&#38;#39;);

//adjust where secondary aside displays
function child_2nd_subsidiary_aside() {
	if (is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) &#38;#38;&#38;#38; (is_front_page() &#124;&#124; !is_page() ) ) { //adjust logic on this line
		echo thematic_before_widget_area(&#38;#39;secondary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;secondary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;secondary-aside&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;my wine fund lives at helgatheviking [at] gmail [dot] com  . i'm partial to sweet whites, though a nice malbec goes well with chocolate.&#60;/p&#62;
&#60;p&#62;let me know if you have any trouble, but i tested this locally and it works w/ thematic 0.9.8
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21517</link>
<pubDate>Sat, 28 May 2011 13:48:32 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">21517@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;(l) - left sidebar&#60;br /&#62;
(m) - main content&#60;br /&#62;
(r) - right sidebar&#60;/p&#62;
&#60;p&#62;I am using this three column layout:&#60;br /&#62;
(l)(m)(r)&#60;/p&#62;
&#60;p&#62;I would like it to be (l)(m)(r) on the home page, blog posts, archives and anywhere else as a default.&#60;/p&#62;
&#60;p&#62;On pages, those created by page.php, I want the layout to be (l)(m), where I will use CSS to expand the main content area to replace the removed right sidebar.&#60;/p&#62;
&#60;p&#62;If you have the time and inclination, an explanation of how one picks the right conditional logic in this situation may be of benefit to those who are bound to ask this question in the future.&#60;/p&#62;
&#60;p&#62;I will gladly contribute to your wine fund. Just let me know where I might do so.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21508</link>
<pubDate>Sat, 28 May 2011 03:19:21 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21508@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yes it is a very common question, i've answered this question personally more than once.  the search here isn't the best, but that post IS the solution.  i've used it myself to switch off the secondary aside in certain places.  &#60;/p&#62;
&#60;p&#62;3 columns &#60;a href=&#34;http://www.peterwade.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.peterwade.com/&#60;/a&#62;&#60;br /&#62;
2 columns &#60;a href=&#34;http://www.peterwade.com/blog&#34; rel=&#34;nofollow&#34;&#62;http://www.peterwade.com/blog&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;it is a matter of picking the right conditional logic.  &#60;/p&#62;
&#60;p&#62;clarify exactly where you want each sidebar to appear (and not appear) and i'll sort it out.  and if you want you can contribute $30 to my wine fund then i will not say no.
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21500</link>
<pubDate>Fri, 27 May 2011 22:52:14 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">21500@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Helga, when I first read through the second link you provided above, I couldn't figure out what you were referencing. Then I went through and read each post, realizing that the thread was derailed halfway through to something very relevant to my question.&#60;/p&#62;
&#60;p&#62;The feeling I came away with is that my question is a common one for someone of my skill level who is developing a Thematic child theme, but that, while you have offered some theoretical suggestions, no one has come up with a solid answer to the question.&#60;/p&#62;
&#60;p&#62;Would it be kosher to offer to pay for a solid answer that would be released to the community? If so, do you know who in the Thematic community commonly freelances in this way? It seems like something that could be parsed out in 25-30 minutes for someone who really knows what their doing. I'm willing to pay $25-30 via Paypal for a solid answer to my specific question with an eye toward making that answer accessible to others who want X sidebar on Y page only.
&#60;/p&#62;</description>
</item>
<item>
<title>diverge on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21497</link>
<pubDate>Fri, 27 May 2011 18:38:21 +0000</pubDate>
<dc:creator>diverge</dc:creator>
<guid isPermaLink="false">21497@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;He doesn't really need it though.&#60;/p&#62;
&#60;p&#62;Change the line to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if ( is_active_sidebar(&#38;#39;secondary-aside&#38;#39;) AND !is_home() ) {&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I've removed the opening bracket between the NOT (!) symbol and is_home().
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21496</link>
<pubDate>Fri, 27 May 2011 15:21:24 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21496@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you are missing a closing parens }&#60;/p&#62;
&#60;p&#62;if (is_active_sidebar('secondary-aside') AND !(is_home() )) {&#60;/p&#62;
&#60;p&#62;1. for the forum- put your code between to backtick characters.  if you have a US keyboard it is usually in the top left.&#60;/p&#62;
&#60;p&#62;2. get yourself a decent text-editor.  something like Notepad++ which has syntax highlighting and when you select a parens it will highlight it and match it w/ its partner.  &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://download.cnet.com/Notepad/3000-2352_4-10327521.html&#34; rel=&#34;nofollow&#34;&#62;http://download.cnet.com/Notepad/3000-2352_4-10327521.html&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21493</link>
<pubDate>Fri, 27 May 2011 14:20:34 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">21493@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This code has given me several critical errors, and I've been able to handle some of them but I'm currently a little stuck.&#60;/p&#62;
&#60;p&#62;Here is what I have now:&#60;/p&#62;
&#60;p&#62;function change_widgetized_area($content) {&#60;/p&#62;
&#60;p&#62;$content['Primary Aside']['args']['function']='child_1st_subsidiary_aside';&#60;br /&#62;
$content['Secondary Aside']['args']['function']='child_2nd_subsidiary_aside';&#60;/p&#62;
&#60;p&#62;return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_widgetized_areas', 'change_widgetized_area');&#60;/p&#62;
&#60;p&#62;function child_1st_subsidiary_aside() {&#60;br /&#62;
if (is_active_sidebar('primary-aside') AND is_home() ) {&#60;br /&#62;
echo thematic_before_widget_area('primary-aside');&#60;br /&#62;
dynamic_sidebar('primary-aside');&#60;br /&#62;
echo thematic_after_widget_area('primary-aside');&#60;br /&#62;
}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function child_2nd_subsidiary_aside() {&#60;br /&#62;
if (is_active_sidebar('secondary-aside') AND !(is_home() ) {&#60;br /&#62;
echo thematic_before_widget_area('secondary-aside');&#60;br /&#62;
dynamic_sidebar('secondary-aside');&#60;br /&#62;
echo thematic_after_widget_area('secondary-aside');&#60;br /&#62;
}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;I'm currently getting an error on this line:&#60;br /&#62;
if (is_active_sidebar('secondary-aside') AND !(is_home() ) {
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21492</link>
<pubDate>Fri, 27 May 2011 13:48:14 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">21492@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;All this goes in my functions.php, correct?:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;function change_widgetized_area($content) {&#60;/p&#62;
&#60;p&#62;	$content['Primary Aside']['args']['function']='child_1st_subsidiary_aside';&#60;br /&#62;
	$content['Secondary Aside']['args']['function']='child_2nd_subsidiary_aside';&#60;/p&#62;
&#60;p&#62;	return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_widgetized_areas', 'change_widgetized_area');&#60;/p&#62;
&#60;/blockquote&#62;
&#60;blockquote&#62;&#60;p&#62;
function child_1st_subsidiary_aside {&#60;br /&#62;
	if (is_active_sidebar('primary-aside') AND is_home() ) {&#60;br /&#62;
		echo thematic_before_widget_area('primary-aside');&#60;br /&#62;
		dynamic_sidebar('primary-aside');&#60;br /&#62;
		echo thematic_after_widget_area('primary-aside');&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function child_2nd_subsidiary_aside [&#60;br /&#62;
	if (is_active_sidebar('secondary-aside') AND !(is_home() ) {&#60;br /&#62;
		echo thematic_before_widget_area('secondary-aside');&#60;br /&#62;
		dynamic_sidebar('secondary-aside');&#60;br /&#62;
		echo thematic_after_widget_area('secondary-aside');&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;/blockquote&#62;</description>
</item>
<item>
<title>helgatheviking on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21479</link>
<pubDate>Thu, 26 May 2011 17:44:41 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21479@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;does this help?&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/alternating-sidebars-depending-on-homepages&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/alternating-sidebars-depending-on-homepages&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;you'll have to adjust the conditional logic&#60;/p&#62;
&#60;p&#62;this is also relevant:&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas/page/2&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas/page/2&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jhsizemore on "Remove right sidebar from all "pages"?"</title>
<link>http://themeshaper.com/forums/topic/remove-right-sidebar-from-all-pages#post-21473</link>
<pubDate>Thu, 26 May 2011 02:56:45 +0000</pubDate>
<dc:creator>jhsizemore</dc:creator>
<guid isPermaLink="false">21473@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm using the three column layout and I'd like to remove just the right sidebar from all pages (as opposed to the front page, blog posts, etc... Those should remain 3 column). It looks like it would be easy to copy and modify the thematic_sidebar function to do this by having it call on a modified version of the sidebar.php file (in the child theme) that just has the right bar commented out. I'm new to thematic and child theme modification (I'm a recent convert from gut hacking themes) so I feel like there is a little piece of the puzzle I'm missing and I hope someone can provide it. &#60;/p&#62;
&#60;p&#62;Or maybe I've got it all wrong and I need to be set in a different direction.&#60;/p&#62;
&#60;p&#62;Anyhow, thoughts would be appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Removing Drop Down Menu in Twenty Ten Theme"</title>
<link>http://themeshaper.com/forums/topic/removing-drop-down-menu-in-twenty-ten-theme-1#post-20109</link>
<pubDate>Tue, 29 Mar 2011 21:06:17 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">20109@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i was just wondering is all, b/c i'm curious how people who aren't thematic users end up here... especially when wordpress.org seems like the most obvious place.  it used to be more obvious that this was the thematic home, but themeshaper.com has undergone some major overhauls recently... and we're pushing to get thematic off on its own.  it isn't a problem that you can't hire someone... i spent a lot of time learning stuff in forums versus hiring anyone.  it was more to point out that this is a volunteer forum, so you shouldn't expect answers in under 60 minutes to be the norm.
&#60;/p&#62;</description>
</item>
<item>
<title>jmcgil14 on "Removing Drop Down Menu in Twenty Ten Theme"</title>
<link>http://themeshaper.com/forums/topic/removing-drop-down-menu-in-twenty-ten-theme-1#post-20108</link>
<pubDate>Tue, 29 Mar 2011 18:30:17 +0000</pubDate>
<dc:creator>jmcgil14</dc:creator>
<guid isPermaLink="false">20108@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for the advice, i will have a look at the links you posted.&#60;/p&#62;
&#60;p&#62;I didnt realise that this wasnt the correct forum, firstly I was under the impression that the tagline 'help in shaping wordpress themes' meant any theme not just thematic, Secondly i am a student working on a project so i cant hire someone and i need to rely on forums etc to help me in this new subject area.
&#60;/p&#62;</description>
</item>

</channel>
</rss>

