<?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 Topic: moving subsidiary asides above thematic footer.</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 20 May 2013 08:30:01 +0000</pubDate>

<item>
<title>ScottNix on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-27266</link>
<pubDate>Fri, 01 Jun 2012 06:09:19 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">27266@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This should work.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Let&#38;#39;s move the subsidiary widget area above the footer
function move_subsidiaries($content) {
    $content[&#38;#39;1st Subsidiary Aside&#38;#39;][&#38;#39;action_hook&#38;#39;] = &#38;#39;thematic_abovefooter&#38;#39;;
    $content[&#38;#39;2nd Subsidiary Aside&#38;#39;][&#38;#39;action_hook&#38;#39;] = &#38;#39;thematic_abovefooter&#38;#39;;
    $content[&#38;#39;3rd Subsidiary Aside&#38;#39;][&#38;#39;action_hook&#38;#39;] = &#38;#39;thematic_abovefooter&#38;#39;;
    return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;move_subsidiaries&#38;#39;);

// Now we need to unhook everything else that&#38;#39;s related to the subsidiary widget area
function remove_relatedfunctions() {
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_subsidiaryopen&#38;#39;, 10);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_before_first_sub&#38;#39;,20);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_between_firstsecond_sub&#38;#39;,40);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_between_secondthird_sub&#38;#39;,60);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_after_third_sub&#38;#39;,80);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_subsidiaryclose&#38;#39;, 200);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_relatedfunctions&#38;#39;);

// And now we need to add these functions to thematic_abovefooter()
    add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_subsidiaryopen&#38;#39;, 10);
    add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_before_first_sub&#38;#39;,20);
    add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_between_firstsecond_sub&#38;#39;,40);
    add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_between_secondthird_sub&#38;#39;,60);
    add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_after_third_sub&#38;#39;,80);
    add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_subsidiaryclose&#38;#39;, 200);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>shelleyeaster on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-27264</link>
<pubDate>Fri, 01 Jun 2012 05:27:03 +0000</pubDate>
<dc:creator>shelleyeaster</dc:creator>
<guid isPermaLink="false">27264@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi @butters81, thanks for pointing that out. I've tried to fix the code to make it work with the latest SVN but I'm afraid I'm not figuring it out. Does anyone know how this code can be updated to work with the renamed hooks? Thanks in advance for help.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-26175</link>
<pubDate>Thu, 05 Apr 2012 19:40:06 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26175@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;good point @butters81 !  the renaming was part of passing WP theme review standards.
&#60;/p&#62;</description>
</item>
<item>
<title>butters81 on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-26172</link>
<pubDate>Thu, 05 Apr 2012 16:40:43 +0000</pubDate>
<dc:creator>butters81</dc:creator>
<guid isPermaLink="false">26172@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Just in case anyone else is pulling their hair out, in the latest SVN (as on 5apr12), I've just realised that some of those hooks have been renamed for consistency. So will be &#34;thematic_before_first_sub&#34; rather than &#34;add_before_first_sub&#34;!
&#60;/p&#62;</description>
</item>
<item>
<title>softlimit on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-13826</link>
<pubDate>Sun, 11 Jul 2010 02:28:28 +0000</pubDate>
<dc:creator>softlimit</dc:creator>
<guid isPermaLink="false">13826@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;scratch that...  just found this post &#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-add-widget-areas&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-add-widget-areas&#60;/a&#62;  which seems to be a perfect solution.
&#60;/p&#62;</description>
</item>
<item>
<title>softlimit on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-13825</link>
<pubDate>Sun, 11 Jul 2010 02:25:15 +0000</pubDate>
<dc:creator>softlimit</dc:creator>
<guid isPermaLink="false">13825@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Looking for a similar &#34;above the footer&#34; content area solution, but would love to keep the footer subsidiary widget areas intact.  Any thoughts on that?  The end goal is to get a series of category columns appearing down at the bottom of the homepage.  Chances are, I'll do the category columns using an existing widget...   Was wondering if the best solution might be to just do as above, but just moving the &#34;index bottom&#34; widget area above the footer rather than having it wrapped in the main content column. I'm sure I should be able to figure this out on my own, but... my PHP skills are a bit limited when it comes to writing custom functions, etc.  Would appreciate any help.  Thanks in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>theorib on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8390</link>
<pubDate>Thu, 10 Dec 2009 01:07:51 +0000</pubDate>
<dc:creator>theorib</dc:creator>
<guid isPermaLink="false">8390@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Chris you are just awesome!!! :D
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8369</link>
<pubDate>Wed, 09 Dec 2009 21:03:47 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8369@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Problem solved .. uploaded the latest changes to the SVN repository and to my blog.&#60;/p&#62;
&#60;p&#62;Blog is still up and running :)&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8366</link>
<pubDate>Wed, 09 Dec 2009 20:44:36 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8366@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Need a bit more time to hunt down a minor glitch the current widgets.php.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8365</link>
<pubDate>Wed, 09 Dec 2009 20:37:32 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8365@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can you see me smile?&#60;/p&#62;
&#60;p&#62;It works!&#60;/p&#62;
&#60;p&#62;Still need to upload the changes to the SVN .. here's the code that moves the widget area:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Let&#38;#39;s move the subsidiary widget area above the footer
function move_subsidiaries($content) {
	$content[&#38;#39;1st Subsidiary Aside&#38;#39;][&#38;#39;action_hook&#38;#39;] = &#38;#39;thematic_abovefooter&#38;#39;;
	$content[&#38;#39;2nd Subsidiary Aside&#38;#39;][&#38;#39;action_hook&#38;#39;] = &#38;#39;thematic_abovefooter&#38;#39;;
	$content[&#38;#39;3rd Subsidiary Aside&#38;#39;][&#38;#39;action_hook&#38;#39;] = &#38;#39;thematic_abovefooter&#38;#39;;
	return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;move_subsidiaries&#38;#39;);

// Now we need to unhook everything else that&#38;#39;s related to the subsidiary widget area
function remove_relatedfunctions() {
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_subsidiaryopen&#38;#39;, 10);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;add_before_first_sub&#38;#39;,20);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;add_between_firstsecond_sub&#38;#39;,40);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;add_between_secondthird_sub&#38;#39;,60);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;add_after_third_sub&#38;#39;,80);
    remove_action(&#38;#39;widget_area_subsidiaries&#38;#39;, &#38;#39;thematic_subsidiaryclose&#38;#39;, 200);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_relatedfunctions&#38;#39;);

// And now we need to add these functions to thematic_abovefooter()
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_subsidiaryopen&#38;#39;, 10);
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;add_before_first_sub&#38;#39;,20);
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;add_between_firstsecond_sub&#38;#39;,40);
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;add_between_secondthird_sub&#38;#39;,60);
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;add_after_third_sub&#38;#39;,80);
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;thematic_subsidiaryclose&#38;#39;, 200);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8364</link>
<pubDate>Wed, 09 Dec 2009 20:20:06 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8364@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK .. will do the test and move the widget area above the footer .. wish me luck! ;)
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8363</link>
<pubDate>Wed, 09 Dec 2009 20:13:31 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8363@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;My brain feels like the Gordian knot, but I think I got it.&#60;/p&#62;
&#60;p&#62;Let me do some tests before I release the latest changes to the SVN.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Justin on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8360</link>
<pubDate>Wed, 09 Dec 2009 17:34:56 +0000</pubDate>
<dc:creator>Justin</dc:creator>
<guid isPermaLink="false">8360@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Wow, thank you both!&#60;/p&#62;
&#60;p&#62;theorib, I had initially studied this or similar code you added in another post and was hoping to avoid adding a new widget area to the framework.  However, at the end of the day my choice was between that and edits strait into the files to get the control I needed.  I'm Looking forward to see what Chris has incorporated to grab more control of those subsidiary widgets.&#60;/p&#62;
&#60;p&#62;Chris, I will wait for you to give the go on subversion before digging in.  Are their any big areas of concern with other changes that may be in lurking in the Subversion code base?  I have to launch this week and may not have much time for debugging.&#60;/p&#62;
&#60;p&#62;Thanks again!!!
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8355</link>
<pubDate>Wed, 09 Dec 2009 14:18:57 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8355@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Btw.: I forgot to mention .. as soon as the widget area code is ready for the footer, moving the widget area is just changing the fields for the action hook ;)
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8353</link>
<pubDate>Wed, 09 Dec 2009 13:02:18 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8353@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Don't get the current latest copy from the SVN repository! &#60;/p&#62;
&#60;p&#62;It has the thematic_footer() thing up and running but I still need to sort out a few things with the subsidiary widget area.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>theorib on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8351</link>
<pubDate>Wed, 09 Dec 2009 10:26:02 +0000</pubDate>
<dc:creator>theorib</dc:creator>
<guid isPermaLink="false">8351@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Justin, how are you?&#60;/p&#62;
&#60;p&#62;I had he same need as you for creating widgetized areas above the footer so here is what I did with Chris's kind help:&#60;/p&#62;
&#60;p&#62;First, make sure you get the lates SVN copy of thematic. If you don't know how to do it look at this post: &#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-get-the-latest-svn-copy-of-thematic&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-get-the-latest-svn-copy-of-thematic&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then, put this into your child theme's function.php file between the &#60;code&#62;&#38;lt;?php&#60;/code&#62; and &#60;code&#62;?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function create_my_widgetized_areas($content) {
	$content[&#38;#39;1st Above Footer Aside&#38;#39;] = array(
  	&#38;#39;admin_menu_order&#38;#39; =&#38;gt; 510,
		&#38;#39;args&#38;#39; =&#38;gt; array (
			&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;1st Above Footer Aside&#38;#39;,
			&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;first-above-footer-aside&#38;#39;,
			&#38;#39;before_widget&#38;#39; =&#38;gt; thematic_before_widget(),
			&#38;#39;after_widget&#38;#39; =&#38;gt; thematic_after_widget(),
			&#38;#39;before_title&#38;#39; =&#38;gt; thematic_before_title(),
			&#38;#39;after_title&#38;#39; =&#38;gt; thematic_after_title(),
		),
		&#38;#39;action_hook&#38;#39;	=&#38;gt; &#38;#39;above_footer_widgets&#38;#39;,
		&#38;#39;function&#38;#39;		=&#38;gt; &#38;#39;add_widgetized_areas&#38;#39;,
		&#38;#39;priority&#38;#39;		=&#38;gt; 10,
	);
		$content[&#38;#39;2nd Above Footer Aside&#38;#39;] = array(
  	&#38;#39;admin_menu_order&#38;#39; =&#38;gt; 520,
		&#38;#39;args&#38;#39; =&#38;gt; array (
			&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;2nd Above Footer Aside&#38;#39;,
			&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;second-above-footer-aside&#38;#39;,
			&#38;#39;before_widget&#38;#39; =&#38;gt; thematic_before_widget(),
			&#38;#39;after_widget&#38;#39; =&#38;gt; thematic_after_widget(),
			&#38;#39;before_title&#38;#39; =&#38;gt; thematic_before_title(),
			&#38;#39;after_title&#38;#39; =&#38;gt; thematic_after_title(),
		),
		&#38;#39;action_hook&#38;#39;	=&#38;gt; &#38;#39;above_footer_widgets&#38;#39;,
		&#38;#39;function&#38;#39;		=&#38;gt; &#38;#39;add_widgetized_areas&#38;#39;,
		&#38;#39;priority&#38;#39;		=&#38;gt; 10,
	);
		$content[&#38;#39;3rd Above Footer Aside&#38;#39;] = array(
  	&#38;#39;admin_menu_order&#38;#39; =&#38;gt; 530,
		&#38;#39;args&#38;#39; =&#38;gt; array (
			&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;3rd Above Footer Aside&#38;#39;,
			&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;third-above-footer-aside&#38;#39;,
			&#38;#39;before_widget&#38;#39; =&#38;gt; thematic_before_widget(),
			&#38;#39;after_widget&#38;#39; =&#38;gt; thematic_after_widget(),
			&#38;#39;before_title&#38;#39; =&#38;gt; thematic_before_title(),
			&#38;#39;after_title&#38;#39; =&#38;gt; thematic_after_title(),
		),
		&#38;#39;action_hook&#38;#39;	=&#38;gt; &#38;#39;above_footer_widgets&#38;#39;,
		&#38;#39;function&#38;#39;		=&#38;gt; &#38;#39;add_widgetized_areas&#38;#39;,
		&#38;#39;priority&#38;#39;		=&#38;gt; 10,
	);
	return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;create_my_widgetized_areas&#38;#39;);

// And this is our new function that displays the widgetized area
function add_widgetized_areas() {
	if (is_sidebar_active(&#38;#39;first-above-footer-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;first-above-footer-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;first-above-footer-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;first-above-footer-aside&#38;#39;);
	}
	if (is_sidebar_active(&#38;#39;second-above-footer-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;second-above-footer-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;second-above-footer-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;second-above-footer-aside&#38;#39;);
	}
	if (is_sidebar_active(&#38;#39;third-above-footer-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;third-above-footer-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;third-above-footer-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;third-above-footer-aside&#38;#39;);
	}
}

// Creates the Above footer Widgets Action Hook
function above_footer_widgets() {
    do_action(&#38;#39;above_footer_widgets&#38;#39;);
} // end thematic_abovefooter

// Creates the above footer widgets container
function above_footer_widgets_container() {
      // adds the container div to the widgets
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;first-above-footer-aside&#38;#39;) OR is_sidebar_active(&#38;#39;second-above-footer-aside&#38;#39;) OR is_sidebar_active(&#38;#39;third-above-footer-aside&#38;#39;) ) {
    //opens the container
    echo &#38;#39;&#38;lt;div id=&#38;quot;thematic-above-footer&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;div id=&#38;quot;thematic-above-footer-asides&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    // calls the widgets
    above_footer_widgets ();
    //closes the container
    echo &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- thematic-above-footer-asides --&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- thematic-above-footer --&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;  ;
  }
}
add_action(&#38;#39;thematic_abovefooter&#38;#39;, &#38;#39;above_footer_widgets_container&#38;#39;,5);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As for the filter thing, I'll better let Chris help you out. Tell me if this works and Chris, if you see any way to improve this code that would be welcome!!!!&#60;/p&#62;
&#60;p&#62;best,&#60;/p&#62;
&#60;p&#62;t.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8350</link>
<pubDate>Wed, 09 Dec 2009 08:10:10 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8350@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Justin,&#60;/p&#62;
&#60;p&#62;I'm currently working on Thematic to implement the needed functionality. The code for the footer is ready to go. Need a bit more time to sort out the widget area code.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Justin on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8342</link>
<pubDate>Tue, 08 Dec 2009 19:32:05 +0000</pubDate>
<dc:creator>Justin</dc:creator>
<guid isPermaLink="false">8342@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;UPDATED QUESTION 2... Ok sorry togo at this one more time...&#60;/p&#62;
&#60;p&#62;To filter which pages display the subsidiary asides I have to update the footer copied into my child theme using php like this: &#60;/p&#62;
&#60;p&#62;&#60;code&#62;...&#38;lt;div id=&#34;footer&#34;&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
// Begin Filtering Display of Features (Subsidiary Asides)&#60;br /&#62;
if (is_page('home'))&#60;br /&#62;
        get_sidebar('subsidiary')&#60;br /&#62;
// End Features Filtering&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#38;lt;div id=&#34;siteinfo&#34;&#38;gt;...&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I don't want to hack the footer, but the only other thing I can think to do without hacking themeshaper is maybe to create a new widget area and I doubt I have much more time to understand creating a widget area.&#60;/p&#62;
&#60;p&#62;It seems like it would be much easier to use a hook and place the the existing subsidiary aside where I want it, and on which pages I want using the functions.php.  I simply cant figure out how to filter the subsidiary sidebar out of the footer once I add it elsewhere using the functions.php file.&#60;/p&#62;
&#60;p&#62;Any good suggestions on this will truly make my day!  Thank you in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>Justin on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8333</link>
<pubDate>Tue, 08 Dec 2009 06:45:36 +0000</pubDate>
<dc:creator>Justin</dc:creator>
<guid isPermaLink="false">8333@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;UPDATED QUESTION: Actually I would be find to keep the subsidiary asides where they are in the footer if i could figure out how to filter the display based on page.  I am probably missing something simple as i am not having problems filtering the sidebar...  Does anyone have any ideas on the best way to filter this specific section?
&#60;/p&#62;</description>
</item>
<item>
<title>Justin on "moving subsidiary asides above thematic footer."</title>
<link>http://themeshaper.com/forums/topic/moving-subsidiary-asides-above-thematic-footer#post-8314</link>
<pubDate>Mon, 07 Dec 2009 17:46:02 +0000</pubDate>
<dc:creator>Justin</dc:creator>
<guid isPermaLink="false">8314@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Struggling to find the best way to move the subsidiary aside out of the footer and placing it (and its sub-asides) above the footer.&#60;/p&#62;
&#60;p&#62;Trying to avoid adding new widgets and custom pages.  Simply wish to move the subsidiary asides up using functions if at all possible.&#60;/p&#62;
&#60;p&#62;I can specify the exact location I'm targeting for subsidiary section in the functions file.  Also grasp removal and add via PHP.  Just not sure how to call the subsidiary section using a filter or hook.&#60;/p&#62;
&#60;p&#62;Any suggestions?  Thank you!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
