<?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: Comment Bubble</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 20 May 2013 22:23:42 +0000</pubDate>

<item>
<title>ScottNix on "Comment Bubble"</title>
<link>http://themeshaper.com/forums/topic/comment-bubble#post-25147</link>
<pubDate>Wed, 01 Feb 2012 23:54:10 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">25147@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The PHP code that goes into your functions.php file works fine for me. Did you at least see the number of comments show up?&#60;/p&#62;
&#60;p&#62;I have a feeling you missed the part that mentions the CSS he has listed is actually SASS, which is a different kind of automated way of doing CSS that requires stuff you probably don't want to get in to yet. It won't work if you just paste it into the style.css file. He however does link to the article showing how to make the comment bubbles. So you will just need to figure out what to label the CSS and you should be good.&#60;/p&#62;
&#60;p&#62;He also doesn't mention how to remove it from the post footer, with just the code from his site, you will still get the comment number in the bottom of the post (except on single pages). For that, use&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_override_postfooter() {
	global $id, $post;

	if ($post-&#38;gt;post_type == &#38;#39;page&#38;#39; &#38;#38;&#38;#38; current_user_can(&#38;#39;edit_posts&#38;#39;)) { /* For logged-in &#38;quot;page&#38;quot; search results */
		$postfooter = &#38;#39;&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;&#38;#39; . thematic_postfooter_posteditlink();
		$postfooter .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-utility --&#38;gt;\n&#38;quot;;
	} elseif ($post-&#38;gt;post_type == &#38;#39;page&#38;#39;) { /* For logged-out &#38;quot;page&#38;quot; search results */
		$postfooter = &#38;#39;&#38;#39;;
	} else {
		if (is_single()) {
			$postfooter = &#38;#39;&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;&#38;#39; . thematic_postfooter_postcategory() . thematic_postfooter_posttags() . thematic_postfooter_postconnect();
		} else {
			$postfooter = &#38;#39;&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;&#38;#39; . thematic_postfooter_postcategory() . thematic_postfooter_posttags();
		}
		$postfooter .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-utility --&#38;gt;\n&#38;quot;;
	}

	// Put it on the screen
	echo apply_filters( &#38;#39;thematic_postfooter&#38;#39;, $postfooter ); // Filter to override default post footer
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And after that, you will still have a &#60;code&#62;&#124;&#60;/code&#62; showing after the Category/Tags, so you can hide that with CSS &#60;code&#62;.meta-sep-comments-link { display: none; }&#60;/code&#62;. I would say you could remove that too, but you would have to mess with the tags function, which if you exclude tags... you will then get the same problem on the Category (which will show the tags sep). So I would just hide it with CSS to save time.
&#60;/p&#62;</description>
</item>
<item>
<title>violetabella on "Comment Bubble"</title>
<link>http://themeshaper.com/forums/topic/comment-bubble#post-25138</link>
<pubDate>Wed, 01 Feb 2012 01:30:47 +0000</pubDate>
<dc:creator>violetabella</dc:creator>
<guid isPermaLink="false">25138@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;HI! I've been trying to implement a comment bubble to my child theme, but not having much luck. I did try this tutorial, &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mrdanadams.com/2011/css-only-comment-count-bubble-in-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://mrdanadams.com/2011/css-only-comment-count-bubble-in-wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but the bubble did not show up (even on the posts with comments). &#60;/p&#62;
&#60;p&#62;Is there another way to go about doing this?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
