<?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: How to replace code in #access, but still keep the div</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 09 Feb 2012 04:31:47 +0000</pubDate>

<item>
<title>helgatheviking on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-12161</link>
<pubDate>Thu, 06 May 2010 03:00:51 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">12161@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@ben - this thread discusses how to conditionally remove #access :&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/conditionally-removing-thematic_access&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/conditionally-removing-thematic_access&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>BenParis on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-12160</link>
<pubDate>Thu, 06 May 2010 01:37:23 +0000</pubDate>
<dc:creator>BenParis</dc:creator>
<guid isPermaLink="false">12160@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i tried to modify your code with an if (is_page()) and I couldn't get it to work
&#60;/p&#62;</description>
</item>
<item>
<title>BenParis on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-12159</link>
<pubDate>Thu, 06 May 2010 01:36:46 +0000</pubDate>
<dc:creator>BenParis</dc:creator>
<guid isPermaLink="false">12159@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;is there a way to do this conditionally Chris? I want to remove the menu on one page and keep the div
&#60;/p&#62;</description>
</item>
<item>
<title>killtheliterate on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-5040</link>
<pubDate>Thu, 09 Jul 2009 23:00:07 +0000</pubDate>
<dc:creator>killtheliterate</dc:creator>
<guid isPermaLink="false">5040@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;where is that function coming from? i looked in the thematic function file, and it looks rather sparse
&#60;/p&#62;</description>
</item>
<item>
<title>shelzmike on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-4987</link>
<pubDate>Wed, 08 Jul 2009 02:57:39 +0000</pubDate>
<dc:creator>shelzmike</dc:creator>
<guid isPermaLink="false">4987@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Chris, thanks for the reply. Actually, I am as I mentioned in my original post, dense :). I did not realize that thematic already was using the sf-menu anyway. I do not need all that the menu I mentioned offers. What comes by default is plenty by me..all I needed to do was add certain pages as child pages and the menu did what I wanted it to (duh!). That being said, I did not try the code you posted, but coming from you, I am sure it probably does work (for anyone who may stumble upon this post who really does want to use the plug-in mentioned). Thanks again for the reply. &#60;/p&#62;
&#60;p&#62;Mike
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-4972</link>
<pubDate>Tue, 07 Jul 2009 20:33:52 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">4972@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Mike,&#60;/p&#62;
&#60;p&#62;use this code in your child theme's functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// First we need to remove the action creating the menu
function remove_access($content) {
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_access&#38;#39;,9);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_access&#38;#39;);

// Now we need to rebuild it
function childtheme_access() { ?&#38;gt;
		    	&#38;lt;div id=&#38;quot;access&#38;quot;&#38;gt;
		    		&#38;lt;div class=&#38;quot;skip-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;#content&#38;quot; title=&#38;quot;&#38;lt;?php _e(&#38;#39;Skip navigation to the content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Skip to content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;
		            &#38;lt;!-- your code for the navigation menu --&#38;gt;
		        &#38;lt;/div&#38;gt;&#38;lt;!-- #access --&#38;gt;
		&#38;lt;?php }
// add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;childtheme_access&#38;#39;,9);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>shelzmike on "How to replace code in #access, but still keep the div"</title>
<link>http://themeshaper.com/forums/topic/how-to-replace-code-in-access-but-still-keep-the-div#post-4895</link>
<pubDate>Fri, 03 Jul 2009 06:21:53 +0000</pubDate>
<dc:creator>shelzmike</dc:creator>
<guid isPermaLink="false">4895@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello - &#60;/p&#62;
&#60;p&#62;I am probably being dense here as I am still learning php and where to find everything. That being said, I will try to be specific on what I am trying to do.&#60;/p&#62;
&#60;p&#62;I have added PixoPoint's multi-level navigation plug-in to my child theme based on thematic. I can get the menu to show up, but when I add the php code for the multi-level navigation menu, I do so in the header.php file. This keeps the old menu (that is in #access) and just puts the multi-level below it - thus 2 menus. I have found info on how to remove #access, but I do not really want to do that. I would rather simply replace the code [em]within[em] the access div. So where do I find that at? Or, if there is a simpler way (besides display:none in the css for #access), I would be grateful. &#60;/p&#62;
&#60;p&#62;Mike
&#60;/p&#62;</description>
</item>

</channel>
</rss>

