<?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: thematic comments</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 22 May 2013 11:05:33 +0000</pubDate>

<item>
<title>iCristiano on "Remove "Comments Closed" text"</title>
<link>http://themeshaper.com/forums/topic/remove-comments-closed-text#post-20553</link>
<pubDate>Thu, 14 Apr 2011 16:55:35 +0000</pubDate>
<dc:creator>iCristiano</dc:creator>
<guid isPermaLink="false">20553@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sorry @joperron and friends, I found it. The problem was in a plugin. Resolved!
&#60;/p&#62;</description>
</item>
<item>
<title>iCristiano on "Remove "Comments Closed" text"</title>
<link>http://themeshaper.com/forums/topic/remove-comments-closed-text#post-20552</link>
<pubDate>Thu, 14 Apr 2011 16:48:26 +0000</pubDate>
<dc:creator>iCristiano</dc:creator>
<guid isPermaLink="false">20552@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes @joperron, that was I thought... but, I don´t know why, it doesn´t work.&#60;/p&#62;
&#60;p&#62;Using firebug, I realize that on page the resulted code is &#60;code&#62;&#38;lt;h2&#38;gt;Comments Closed&#38;lt;/h2&#38;gt;&#60;/code&#62; and not the &#60;code&#62;&#38;lt;span class=&#38;quot;comments-link comments-closed-link&#38;quot;&#38;gt;Comments Closed&#38;lt;/span&#38;gt;&#60;/code&#62; like it suppose to be if it was a result of this function...&#60;/p&#62;
&#60;p&#62;Something strange is happening!
&#60;/p&#62;</description>
</item>
<item>
<title>joperron on "Remove "Comments Closed" text"</title>
<link>http://themeshaper.com/forums/topic/remove-comments-closed-text#post-20551</link>
<pubDate>Thu, 14 Apr 2011 16:18:53 +0000</pubDate>
<dc:creator>joperron</dc:creator>
<guid isPermaLink="false">20551@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Looking in content-extensions.php I see this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Create comments link and edit link
if (function_exists(&#38;#39;childtheme_override_postfooter_postcomments&#38;#39;))  {
	function thematic_postfooter_postcomments() {
		return childtheme_override_postfooter_postcomments();
	}
} else {
	function thematic_postfooter_postcomments() {
	    if (comments_open()) {
	        $postcommentnumber = get_comments_number();
	        if ($postcommentnumber &#38;gt; &#38;#39;1&#38;#39;) {
	            $postcomments = &#38;#39; &#38;lt;span class=&#38;quot;comments-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39; . apply_filters(&#38;#39;the_permalink&#38;#39;, get_permalink()) . &#38;#39;#comments&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;Comment on &#38;#39;, &#38;#39;thematic&#38;#39;) . the_title_attribute(&#38;#39;echo=0&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
	            $postcomments .= get_comments_number() . __(&#38;#39; Comments&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;
	        } elseif ($postcommentnumber == &#38;#39;1&#38;#39;) {
	            $postcomments = &#38;#39; &#38;lt;span class=&#38;quot;comments-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39; . apply_filters(&#38;#39;the_permalink&#38;#39;, get_permalink()) . &#38;#39;#comments&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;Comment on &#38;#39;, &#38;#39;thematic&#38;#39;) . the_title_attribute(&#38;#39;echo=0&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
	            $postcomments .= get_comments_number() . __(&#38;#39; Comment&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;
	        } elseif ($postcommentnumber == &#38;#39;0&#38;#39;) {
	            $postcomments = &#38;#39; &#38;lt;span class=&#38;quot;comments-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39; . apply_filters(&#38;#39;the_permalink&#38;#39;, get_permalink()) . &#38;#39;#comments&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;Comment on &#38;#39;, &#38;#39;thematic&#38;#39;) . the_title_attribute(&#38;#39;echo=0&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
	            $postcomments .= __(&#38;#39;Leave a comment&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;
	        }
	    } else {
	        $postcomments = &#38;#39; &#38;lt;span class=&#38;quot;comments-link comments-closed-link&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Comments closed&#38;#39;, &#38;#39;thematic&#38;#39;) .&#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
	    }
	    // Display edit link
	    if (current_user_can(&#38;#39;edit_posts&#38;#39;)) {
	        $postcomments .= &#38;#39; &#38;lt;span class=&#38;quot;meta-sep meta-sep-edit&#38;quot;&#38;gt;&#124;&#38;lt;/span&#38;gt; &#38;#39; . thematic_postfooter_posteditlink();
	    }
	    return apply_filters(&#38;#39;thematic_postfooter_postcomments&#38;#39;,$postcomments); 

	}
} // end postfooter_postcomments&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So I imagine you can either override it or hide it with CSS using it's class
&#60;/p&#62;</description>
</item>
<item>
<title>iCristiano on "Remove "Comments Closed" text"</title>
<link>http://themeshaper.com/forums/topic/remove-comments-closed-text#post-20550</link>
<pubDate>Thu, 14 Apr 2011 16:14:01 +0000</pubDate>
<dc:creator>iCristiano</dc:creator>
<guid isPermaLink="false">20550@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi friends,&#60;br /&#62;
I´m trying to find where I can remove the &#34;Comments Closed&#34; text on the posts/pages the comments are off, but I can´t.&#60;/p&#62;
&#60;p&#62;I found the thematic_postfooter_postcomments() function on content-extensions.php but it seems like its not this function that prints it...&#60;/p&#62;
&#60;p&#62;Any help???&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
