<?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: Hiding the WP comment section</title>
		<link>http://www.kriesi.at/support/topic/hiding-the-wp-comment-section</link>
		<description>Support Forum - Topic: Hiding the WP comment section</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 11:46:35 +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/hiding-the-wp-comment-section" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Hiding the WP comment section"</title>
			<link>http://www.kriesi.at/support/topic/hiding-the-wp-comment-section#post-69558</link>
			<pubDate>Mon, 06 Aug 2012 07:12:47 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">69558@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up angular\includes\format-standard.php and remove following code to get rid of the comment count:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
						if(comments_open() &#124;&#124; get_comments_number())
						{
							echo &#38;quot;&#38;lt;span class=&#38;#39;comment-container minor-meta&#38;#39;&#38;gt;&#38;quot;;
							comments_popup_link(&#38;quot; &#38;lt;span&#38;gt;0 &#38;quot;.__(&#38;#39;Comments&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;,
												&#38;quot; &#38;lt;span&#38;gt;1 &#38;quot;.__(&#38;#39;Comment&#38;#39; ,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;,
												&#38;quot; &#38;lt;span&#38;gt;% &#38;quot;.__(&#38;#39;Comments&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;,&#38;#39;comments-link&#38;#39;,
												__(&#38;#39;Comments Off&#38;#39;  ,&#38;#39;avia_framework&#38;#39;));
							echo &#38;quot;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;text-sep&#38;#39;&#38;gt;/&#38;lt;/span&#38;gt;&#38;quot;;
						}

						?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>bertuzziphotos on "Hiding the WP comment section"</title>
			<link>http://www.kriesi.at/support/topic/hiding-the-wp-comment-section#post-69284</link>
			<pubDate>Fri, 03 Aug 2012 18:30:27 +0000</pubDate>
			<dc:creator>bertuzziphotos</dc:creator>
			<guid isPermaLink="false">69284@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Seems to have done the trick! Is there a way to remove the WP comment counter at the top of the post? Or possibly even replace it with a count of FB comments?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Hiding the WP comment section"</title>
			<link>http://www.kriesi.at/support/topic/hiding-the-wp-comment-section#post-69279</link>
			<pubDate>Fri, 03 Aug 2012 18:02:27 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">69279@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi bertuzziphotos,&#60;/p&#62;
&#60;p&#62;Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.comment-entry.post-entry {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then open up includes&#38;gt;comments.php and search for the following:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
	// You can start editing here -- including this comment!

	//create seperator
	if(comments_open() &#124;&#124; get_comments_number()) echo avia_advanced_hr(__(&#38;#39;Comments&#38;#39;, &#38;#39;avia_framework&#38;#39;));
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Remove that block to remove the comment HR separator.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bertuzziphotos on "Hiding the WP comment section"</title>
			<link>http://www.kriesi.at/support/topic/hiding-the-wp-comment-section#post-69272</link>
			<pubDate>Fri, 03 Aug 2012 16:56:19 +0000</pubDate>
			<dc:creator>bertuzziphotos</dc:creator>
			<guid isPermaLink="false">69272@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;After looking through every post here on Facebook comment integration, I still have not found a solution to my problem. I'm trying to use a FB comment plugin and have successfully integrated it (along with making it fluid), but have run out of options on how to completely do away with WP comment content below the FB comment section. &#60;/p&#62;
&#60;p&#62;I found this CSS fix:&#60;/p&#62;
&#60;p&#62;.comment_meta_container,&#60;br /&#62;
.comment_container { display: none; }&#60;/p&#62;
&#60;p&#62;which took care of most of the problem, but I'm still seeing a &#34;comment&#34; horizontal divider with a bunch of empty white space above and below. Here's the link to the page: &#60;a href=&#34;http://bertuzziphotography.com/urban-wedding-photos/&#34; rel=&#34;nofollow&#34;&#62;http://bertuzziphotography.com/urban-wedding-photos/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is there a quick CSS fix to remove the comment divider? And is there a way to remove the WP comment counter at the top of the post? Or possibly even replace it with a count of FB comments?&#60;/p&#62;
&#60;p&#62;*Another thing to note is that this Facebook plugin (SEO Facebook) is only visible when comments are turned on in WP.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
