<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Remove all mention of comments?</title>
		<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments</link>
		<description>Support Forum - Topic: Remove all mention of comments?</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 07:07:51 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/remove-all-mention-of-comments" rel="self" type="application/rss+xml" />

		<item>
			<title>Lesley101 on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-19565</link>
			<pubDate>Sat, 21 May 2011 04:03:51 +0000</pubDate>
			<dc:creator>Lesley101</dc:creator>
			<guid isPermaLink="false">19565@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;For anyone wanting to do similar was able to remove second speech bubble for comments image by replicating bg-meta.png (Broadscope&#38;gt;images&#38;gt;skin1&#38;gt;bg-meta.png) using Adobe Illustrator.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lesley101 on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-19564</link>
			<pubDate>Sat, 21 May 2011 02:01:56 +0000</pubDate>
			<dc:creator>Lesley101</dc:creator>
			<guid isPermaLink="false">19564@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I found where to remove the comments section in Broad scope theme:&#60;/p&#62;
&#60;p&#62;Deleted following code from Comments (comments.php):&#60;/p&#62;
&#60;p&#62;&#38;lt;div class='comment-entry post-entry'&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( have_comments() ) : ?&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;h4 id=&#34;comments&#34;&#38;gt;&#38;lt;?php&#60;br /&#62;
			printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'avia_framework' ),&#60;br /&#62;
			number_format_i18n( get_comments_number() ), '' . get_the_title() . '' );&#60;br /&#62;
			?&#38;gt;&#38;lt;/h4&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( get_comment_pages_count() &#38;gt; 1 &#38;amp;&#38;amp; get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?&#38;gt;&#60;br /&#62;
				&#38;lt;?php previous_comments_link( __( '&#38;larr; Older Comments', 'avia_framework' ) ); ?&#38;gt;&#60;br /&#62;
				&#38;lt;?php next_comments_link( __( 'Newer Comments &#38;rarr;', 'avia_framework' ) ); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; // check for comment navigation ?&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;ol class=&#34;commentlist&#34;&#38;gt;&#60;br /&#62;
				&#38;lt;?php&#60;br /&#62;
					/* Loop through and list the comments. Tell wp_list_comments()&#60;br /&#62;
					 * to use avia_inc_custom_comments() to format the comments.&#60;br /&#62;
					 * If you want to overload this in a child theme then you can&#60;br /&#62;
					 * define avia_framework_comment() and that will be used instead.&#60;br /&#62;
					 * See avia_framework_comment() in includes/loop-comments.php for more.&#60;br /&#62;
					 */&#60;br /&#62;
					wp_list_comments( array( 'callback' =&#38;gt; 'avia_inc_custom_comments' ) );&#60;br /&#62;
				?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( get_comment_pages_count() &#38;gt; 1 &#38;amp;&#38;amp; get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?&#38;gt;&#60;br /&#62;
				&#38;lt;?php previous_comments_link( __( '&#38;larr; Older Comments', 'avia_framework' ) ); ?&#38;gt;&#60;br /&#62;
				&#38;lt;?php next_comments_link( __( 'Newer Comments &#38;rarr;', 'avia_framework' ) ); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; // check for comment navigation ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php else : // or, if we don't have comments:&#60;/p&#62;
&#60;p&#62;	/* If there are no comments and comments are closed,&#60;br /&#62;
	 * let's leave a little note, shall we?&#60;br /&#62;
	 */&#60;br /&#62;
	if ( ! comments_open() ) :&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
	&#38;lt;p&#38;gt;&#38;lt;?php _e( 'Comments are closed.', 'avia_framework' ); ?&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; // end ! comments_open() ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php endif; // end have_comments() ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php &#60;/p&#62;
&#60;p&#62;	/* Last but not least the comment_form() wordpress function&#60;br /&#62;
	 * renders the comment form as defined by wordpress itself&#60;br /&#62;
	 * if you want to modify the submission form check the documentation here:&#60;br /&#62;
	 * &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/comment_form&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/comment_form&#60;/a&#62;&#60;br /&#62;
	 */&#60;br /&#62;
	 comment_form(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/div&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lesley101 on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-19548</link>
			<pubDate>Fri, 20 May 2011 16:13:13 +0000</pubDate>
			<dc:creator>Lesley101</dc:creator>
			<guid isPermaLink="false">19548@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Could you also advise of how this is done with the Broadscope theme? Would like to remove the comment/&#34;Leave a Reply&#34; section from all areas. Also, have removed comments from the speech bubbles at the side of posts but would like to remove the bubble image also, if you could give some guidance that would be great!&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14290</link>
			<pubDate>Wed, 09 Mar 2011 14:53:42 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">14290@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;To remove it open up archive.php and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;quot;comments&#38;quot;&#38;gt;&#38;lt;?php comments_popup_link(__(&#38;#39;No Comments&#38;#39;,&#38;#39;cleancut&#38;#39;), __(&#38;#39;1 Comment&#38;#39;,&#38;#39;cleancut&#38;#39;), __(&#38;#39;% Comments&#38;#39;,&#38;#39;cleancut&#38;#39;)); ?&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if (! get_post_type() == &#38;#39;portfolio&#38;#39; ) { ?&#38;gt;

&#38;lt;span class=&#38;quot;comments&#38;quot;&#38;gt;&#38;lt;?php comments_popup_link(__(&#38;#39;No Comments&#38;#39;,&#38;#39;cleancut&#38;#39;), __(&#38;#39;1 Comment&#38;#39;,&#38;#39;cleancut&#38;#39;), __(&#38;#39;% Comments&#38;#39;,&#38;#39;cleancut&#38;#39;)); ?&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>TFuscaldo on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14287</link>
			<pubDate>Wed, 09 Mar 2011 14:30:15 +0000</pubDate>
			<dc:creator>TFuscaldo</dc:creator>
			<guid isPermaLink="false">14287@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That worked for the individual portfolio pages but when I show a list of all the items in a category, the &#34;Comments Off&#34; is still showing up. Here are links to what I'm talking about:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;a href=&#34;http://iosodesign.com/portfolio_entries/tamrafuscaldo/&#34; rel=&#34;nofollow&#34;&#62;http://iosodesign.com/portfolio_entries/tamrafuscaldo/&#60;/a&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;a href=&#34;http://iosodesign.com/portfolio_entries/healthcare/&#34; rel=&#34;nofollow&#34;&#62;http://iosodesign.com/portfolio_entries/healthcare/&#60;/a&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14262</link>
			<pubDate>Wed, 09 Mar 2011 06:47:55 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">14262@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
open up single.php and search for following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;entry commententries&#38;#39;&#38;gt;
           		&#38;lt;?php comments_template(); ?&#38;gt;
           	&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if (! get_post_type() == &#38;#39;portfolio&#38;#39; ) { ?&#38;gt;

&#38;lt;div class=&#38;#39;entry commententries&#38;#39;&#38;gt;
           		&#38;lt;?php comments_template(); ?&#38;gt;
           	&#38;lt;/div&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>TFuscaldo on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14210</link>
			<pubDate>Tue, 08 Mar 2011 19:53:53 +0000</pubDate>
			<dc:creator>TFuscaldo</dc:creator>
			<guid isPermaLink="false">14210@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Can you show how to do this for the CleanCut theme as well? Would like to remove the &#34;Comments Off&#34; tag from the Portfolio Category pages. Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vamcomputers on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14188</link>
			<pubDate>Tue, 08 Mar 2011 14:50:25 +0000</pubDate>
			<dc:creator>vamcomputers</dc:creator>
			<guid isPermaLink="false">14188@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Worked great thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14173</link>
			<pubDate>Tue, 08 Mar 2011 11:25:35 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">14173@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;There are a couple of modifications you need to make to single.php to remove the comment references. This will affect all posts in all categories. Open up single.php, find and remove this code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;span class=&#38;quot;comments&#38;quot;&#38;gt;&#38;lt;?php comments_popup_link(&#38;#39;No Comments&#38;#39;, &#38;#39;1 Comment&#38;#39;, &#38;#39;% Comments&#38;#39;); ?&#38;gt;&#38;lt;?php edit_post_link(&#38;#39;Edit&#38;#39;, &#38;#39; ,&#38;#39;, &#38;#39;&#38;#39;); ?&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and also:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;entry commententry&#38;#39;&#38;gt;
     &#38;lt;?php comments_template(); ?&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you need comment references only to be removed for Portfolio category posts, you can use conditional code such as:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if (! is_category(&#38;#39;portfolio&#38;#39;) ) { ?&#38;gt;

&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;around the code to delete above.&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vamcomputers on "Remove all mention of comments?"</title>
			<link>http://www.kriesi.at/support/topic/remove-all-mention-of-comments#post-14142</link>
			<pubDate>Mon, 07 Mar 2011 18:43:56 +0000</pubDate>
			<dc:creator>vamcomputers</dc:creator>
			<guid isPermaLink="false">14142@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there anyway on a Portfolio page like this: &#60;a href=&#34;http://sideeffectsdesign.com/wordpress/?p=166&#34; rel=&#34;nofollow&#34;&#62;http://sideeffectsdesign.com/wordpress/?p=166&#60;/a&#62; to remove all mention of comments?  Comments are never going to be open on this site, so it doesn't need to say 'comments closed'.  That is the main thing I would like to hide.   I'd like to hide the other 'No Comments ,Edit' at the top as well though.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
