<?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_filter</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 25 May 2013 22:27:29 +0000</pubDate>

<item>
<title>helgatheviking on "removing the hook toolbox_content_nav('nav-above')"</title>
<link>http://themeshaper.com/forums/topic/removing-the-hook-toolbox_content_navnav-above#post-23642</link>
<pubDate>Fri, 28 Oct 2011 16:39:02 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23642@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;are you using thematic?&#60;/p&#62;
&#60;p&#62;and you don't need to remove a hook as you just remove the functions from the hook... so that it is empty.  an empty hook doesn't display anything.  &#60;/p&#62;
&#60;p&#62;instead of filtering those social links into the content why not just echo that at any hook using add_action?
&#60;/p&#62;</description>
</item>
<item>
<title>mclaeys on "removing the hook toolbox_content_nav('nav-above')"</title>
<link>http://themeshaper.com/forums/topic/removing-the-hook-toolbox_content_navnav-above#post-23635</link>
<pubDate>Fri, 28 Oct 2011 02:56:40 +0000</pubDate>
<dc:creator>mclaeys</dc:creator>
<guid isPermaLink="false">23635@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have two questions.&#60;/p&#62;
&#60;p&#62;I'm looking for a way to remove the hook &#38;lt;?php toolbox_content_nav( 'nav-above' ); ?&#38;gt; from the single.php page (not using it) and am not sure how to address the passed variable. The construct here is different then in thematic.&#60;/p&#62;
&#60;p&#62;Also I have some html I'm inserting after the_content via add_filer.&#60;/p&#62;
&#60;p&#62;function burn_single_addsocial($content) {&#60;br /&#62;
/**&#60;br /&#62;
 * On single pages insert social media links&#60;br /&#62;
 *&#60;br /&#62;
 */&#60;br /&#62;
if(is_single()) {&#60;br /&#62;
$content .= '&#38;lt;div class=&#34;sociallist&#34;&#38;gt;&#60;br /&#62;
&#38;lt;span class=&#34;twitter-inlist&#34;&#38;gt;...&#38;lt;/span&#38;gt;&#60;br /&#62;
&#38;lt;span class=&#34;google-inlist&#34;&#38;gt;...&#38;lt;/span&#38;gt;&#60;br /&#62;
&#38;lt;span class=&#34;fb-inlist&#34;&#38;gt;...&#38;lt;/span&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;';&#60;br /&#62;
}&#60;br /&#62;
return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('the_content', 'burn_single_addsocial');&#60;/p&#62;
&#60;p&#62;I'd like to move it after the hook toolbox_content_nav('nav-below')&#60;br /&#62;
but again am not sure how to address the passed variable. Any thoughts.
&#60;/p&#62;</description>
</item>
<item>
<title>samalama on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-21324</link>
<pubDate>Sun, 15 May 2011 15:21:20 +0000</pubDate>
<dc:creator>samalama</dc:creator>
<guid isPermaLink="false">21324@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Adopted from Viking Girl's Hide the postfooter meta data. Kills the Author and yada yada for me.&#60;/p&#62;
&#60;p&#62;function childtheme_override_postheader_postmeta(){&#60;br /&#62;
    //no bacon here&#60;/p&#62;
&#60;p&#62;}
&#60;/p&#62;</description>
</item>
<item>
<title>erikvlie on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-11111</link>
<pubDate>Tue, 30 Mar 2010 15:47:05 +0000</pubDate>
<dc:creator>erikvlie</dc:creator>
<guid isPermaLink="false">11111@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Would this work if I only wanted to have the postmeta on single pages?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_postheader_postmeta() {
if (is_single()) {
$postmeta = &#38;#39;&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;&#38;#39;;
$postmeta .= thematic_postmeta_authorlink();
$postmeta .= &#38;#39;&#38;lt;span class=&#38;quot;meta-sep meta-sep-entry-date&#38;quot;&#38;gt; &#124; &#38;lt;/span&#38;gt;&#38;#39;;
$postmeta .= thematic_postmeta_entrydate();

$postmeta .= thematic_postmeta_editlink();

$postmeta .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-meta --&#38;gt;\n&#38;quot;;
}
return apply_filters(&#38;#39;thematic_postheader_postmeta&#38;#39;,$postmeta);
}
add_filter(&#38;#39;thematic_postheader_postmeta&#38;#39;,&#38;#39;childtheme_postheader_postmeta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>andrea_r on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-11101</link>
<pubDate>Tue, 30 Mar 2010 12:16:43 +0000</pubDate>
<dc:creator>andrea_r</dc:creator>
<guid isPermaLink="false">11101@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yep, we may have missed it.&#60;/p&#62;
&#60;p&#62;Also, I would encourage anyone to use Thematic itself over Buddymatic, if they are not using the BuddyPress plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>jana on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-10351</link>
<pubDate>Mon, 01 Mar 2010 20:57:30 +0000</pubDate>
<dc:creator>jana</dc:creator>
<guid isPermaLink="false">10351@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks...I switched back to Thematic and added it to my post.php and it worked. A huge accomplishment with your help!&#60;br /&#62;
thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-10346</link>
<pubDate>Mon, 01 Mar 2010 15:48:28 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">10346@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ah Buddymatic, yes you are putting it in the right place. Your  problem may be that thematic has been released as a newer version than Ron has integrated into buddymatic and that hook doesn't exist in that theme.&#60;/p&#62;
&#60;p&#62;I believe that framework is still based off of thematic 0.9.5.1 Try changing the hook from &#60;code&#62;thematic_postheader_postmeta&#60;/code&#62; to &#60;code&#62;thematic_postheader&#60;/code&#62; and give it a whirl.&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>jana on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-10343</link>
<pubDate>Mon, 01 Mar 2010 14:53:40 +0000</pubDate>
<dc:creator>jana</dc:creator>
<guid isPermaLink="false">10343@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I put it in there and saved it and it didn't change anything even after I refreshed the page. I'm using buddymatic...Here's what it looked like after I added it.  Thanks for helping a newbie. Jana&#60;/p&#62;
&#60;p&#62; &#38;lt;?php&#60;br /&#62;
function no_postmeta() {}&#60;br /&#62;
add_filter('thematic_postheader_postmeta', 'no_postmeta');&#60;/p&#62;
&#60;p&#62;/*&#60;br /&#62;
Access the framework actions and filters here&#60;br /&#62;
*/ &#60;/p&#62;
&#60;p&#62;?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-10336</link>
<pubDate>Mon, 01 Mar 2010 04:21:37 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">10336@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi jana,&#60;/p&#62;
&#60;p&#62;You would add this in your child theme's function.php file.&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>jana on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-10334</link>
<pubDate>Mon, 01 Mar 2010 03:35:43 +0000</pubDate>
<dc:creator>jana</dc:creator>
<guid isPermaLink="false">10334@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Where would I add this. I'm not skilled with technical stuff so if you can be specific that would be great!&#60;br /&#62;
Thanks a bunch,&#60;br /&#62;
Jana
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-4865</link>
<pubDate>Thu, 02 Jul 2009 10:58:57 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">4865@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;try&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function no_postmeta() {}
add_filter(&#38;#39;thematic_postheader_postmeta&#38;#39;, &#38;#39;no_postmeta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>jarret on "Removing Author/Time Information Under Title"</title>
<link>http://themeshaper.com/forums/topic/removing-authortime-information-under-title#post-4861</link>
<pubDate>Thu, 02 Jul 2009 05:18:06 +0000</pubDate>
<dc:creator>jarret</dc:creator>
<guid isPermaLink="false">4861@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok, for the life of me I can't figure out how to work the whole filter/action thing to be able to get rid of the date/time and author showing under the post title. &#60;/p&#62;
&#60;p&#62;I've tried out something like...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_post_author() {
	remove_filter(&#38;#39;thematic_indexloop&#38;#39;, &#38;#39;thematic_time_display&#38;#39;);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_post_author&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But that isn't working and I've tried multiple other variations with remove_action and what not. What am I doing wrong?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
