<?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>WordPress &#8250; Support Tag: flag-comments</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: flag-comments</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 09:04:28 +0000</pubDate>

<item>
<title>samboll on "[Plugin: Flag Comments] Does not install correctly, incomplete or inaccurate instructions"</title>
<link>http://wordpress.org/support/topic/329271#post-1273339</link>
<pubDate>Sat, 07 Nov 2009 14:06:19 +0000</pubDate>
<dc:creator>samboll</dc:creator>
<guid isPermaLink="false">1273339@http://wordpress.org/support/</guid>
<description>&#60;p&#62;it does say it is only compatible up to ver. 2.7.1...&#60;/p&#62;
&#60;p&#62;work around here&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/support/topic/243614?replies=8&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/243614?replies=8&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>mjw01 on "[Plugin: Flag Comments] Does not install correctly, incomplete or inaccurate instructions"</title>
<link>http://wordpress.org/support/topic/329271#post-1273316</link>
<pubDate>Sat, 07 Nov 2009 13:19:21 +0000</pubDate>
<dc:creator>mjw01</dc:creator>
<guid isPermaLink="false">1273316@http://wordpress.org/support/</guid>
<description>&#60;p&#62;The instructions are at best incomplete and at worst incorrect.  They call for adding a link within the comment php file and make reference to where it should be placed.  The suggested code in the file does not exist.  I have attempted to place the plugin code in many, many places without success.  Further, the plugin setting page is not installed correctly or accessible in 2.8.5.  It may have worked in an earlier version, but it is currently dead.&#60;/p&#62;
&#60;p&#62;The plug-in page on WordPress is over one-year old and the author plugin website is equally dated, offering only pay-me for help.&#60;/p&#62;
&#60;p&#62;Unless the plugin author maintains their plugin, they or WordPress.org should remove it.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/flag-comments/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/flag-comments/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>JonRaasch on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-1256758</link>
<pubDate>Fri, 23 Oct 2009 17:08:14 +0000</pubDate>
<dc:creator>JonRaasch</dc:creator>
<guid isPermaLink="false">1256758@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Yeah it's working well for me in WP 2.8.4 using a custom comments loop, like melvitax describes above
&#60;/p&#62;</description>
</item>
<item>
<title>melvitax on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-1104594</link>
<pubDate>Mon, 15 Jun 2009 18:34:30 +0000</pubDate>
<dc:creator>melvitax</dc:creator>
<guid isPermaLink="false">1104594@http://wordpress.org/support/</guid>
<description>&#60;p&#62;to get this plugin working with the latest version of wordpress u need to do a custom comments loop like it mentions here:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_list_comments#Comments_Only_With_A_Custom_Comment_Display&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/wp_list_comments#Comments_Only_With_A_Custom_Comment_Display&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;this is what i did in mine&#60;/p&#62;
&#60;p&#62;in comments.php replace:&#60;br /&#62;
&#38;lt;?php wp_list_comments(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;with :&#60;/p&#62;
&#60;p&#62;&#38;lt;?php wp_list_comments('type=comment&#38;amp;callback=mytheme_comment'); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;then, in your functions.php file, add the following function:&#60;/p&#62;
&#60;p&#62;function mytheme_comment($comment, $args, $depth) {&#60;br /&#62;
	   $GLOBALS['comment'] = $comment; ?&#38;gt;&#60;br /&#62;
	   &#38;lt;li &#38;lt;?php comment_class(); ?&#38;gt; id=&#34;li-comment-&#38;lt;?php comment_ID() ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
	     &#38;lt;div id=&#34;comment-&#38;lt;?php comment_ID(); ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
	      &#38;lt;div class=&#34;comment-author vcard&#34;&#38;gt;&#60;br /&#62;
	         &#38;lt;?php echo get_avatar($comment,$size='48',$default='&#38;lt;path_to_url&#38;gt;' ); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	         &#38;lt;?php printf(__('&#38;lt;cite class=&#34;fn&#34;&#38;gt;%s&#38;lt;/cite&#38;gt; &#38;lt;span class=&#34;says&#34;&#38;gt;says:&#38;lt;/span&#38;gt;'), get_comment_author_link()) ?&#38;gt;&#60;br /&#62;
	      &#38;lt;/div&#38;gt;&#60;br /&#62;
	      &#38;lt;?php if ($comment-&#38;gt;comment_approved == '0') : ?&#38;gt;&#60;br /&#62;
	         &#60;em&#62;&#38;lt;?php _e('Your comment is awaiting moderation.') ?&#38;gt;&#60;/em&#62;&#60;br /&#62;
	         &#60;br /&#62;
	      &#38;lt;?php endif; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	      &#38;lt;div class=&#34;comment-meta commentmetadata&#34;&#38;gt;&#60;a&#62;comment_ID ) ) ?&#38;gt;&#34;&#38;gt;&#38;lt;?php printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?&#38;gt;&#60;/a&#62;&#38;lt;?php edit_comment_link(__('(Edit)'),'  ','') ?&#38;gt;&#38;lt;?php do_action(&#34;flag_comment_link&#34;); ?&#38;gt;&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;	      &#38;lt;?php comment_text() ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	      &#38;lt;div class=&#34;reply&#34;&#38;gt;&#60;br /&#62;
	         &#38;lt;?php comment_reply_link(array_merge( $args, array('depth' =&#38;gt; $depth, 'max_depth' =&#38;gt; $args['max_depth']))) ?&#38;gt;&#60;br /&#62;
	      &#38;lt;/div&#38;gt;&#60;br /&#62;
	     &#38;lt;/div&#38;gt;&#60;br /&#62;
	&#38;lt;?php&#60;br /&#62;
	}
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-1001043</link>
<pubDate>Sat, 28 Feb 2009 13:25:19 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1001043@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;I have be tried Flag comment 1.7 does not working for wp 2.5&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;What is not working?  Please describe the conditions, the errors.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>LeslieOM on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-1000267</link>
<pubDate>Fri, 27 Feb 2009 17:39:32 +0000</pubDate>
<dc:creator>LeslieOM</dc:creator>
<guid isPermaLink="false">1000267@http://wordpress.org/support/</guid>
<description>&#60;p&#62;im tell you...this same company take look author website.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-993440</link>
<pubDate>Sat, 21 Feb 2009 12:37:08 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">993440@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Try using the plugin from here:&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/extend/plugins/flag-comments/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/flag-comments/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>LeslieOM on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-993168</link>
<pubDate>Sat, 21 Feb 2009 01:57:59 +0000</pubDate>
<dc:creator>LeslieOM</dc:creator>
<guid isPermaLink="false">993168@http://wordpress.org/support/</guid>
<description>&#60;p&#62;:-( &#60;strong&#62;Nobody help me &#60;/strong&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>LeslieOM on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-986680</link>
<pubDate>Sun, 15 Feb 2009 06:11:24 +0000</pubDate>
<dc:creator>LeslieOM</dc:creator>
<guid isPermaLink="false">986680@http://wordpress.org/support/</guid>
<description>&#60;p&#62;*bump*
&#60;/p&#62;</description>
</item>
<item>
<title>LeslieOM on "Flag Comments Plugin"</title>
<link>http://wordpress.org/support/topic/243614#post-985401</link>
<pubDate>Fri, 13 Feb 2009 18:58:57 +0000</pubDate>
<dc:creator>LeslieOM</dc:creator>
<guid isPermaLink="false">985401@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have be tried Flag comment 1.7 does not working for wp 2.5 so i did try &#60;code&#62;&#38;lt;?php do_action(’flag_comment_link’); ?&#38;gt;&#60;/code&#62; in wp-content/themes/template/comments.php&#60;br /&#62;
&#60;strong&#62;Website's flag comments plugin:&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://watershedstudio.com/portfolio/software-development/flag-comments/&#34;&#62;http://watershedstudio.com/portfolio/software-development/flag-comments/&#60;/a&#62;&#60;br /&#62;
I did send to auther so he never reply me at all. :-(&#60;/p&#62;
&#60;p&#62;any1 have experience with it problem? i'm really need badly.&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
</item>

</channel>
</rss>
