I am having a similar issue with the No Follow plugin not excluding designated groups. I have tried to exclude 2 groups URL’s using the parameter “group”. Here is my code:
{exp:comment:entries sort="asc" weblog="blog|prof_ergo"}
<div class="{switch="comment_list|comment_list_alt"}">
{exp:no_follow group="1|6"}
{comment}
{/exp:no_follow}
<p>By {name} on {comment_date format="%M %d, %Y"}</p>
</div><!-- closing .comment_list div -->
{/exp:comment:entries}
I have tried excluding groups using the group ID and using the group name without any results. Every link in my comments regardless of who posted them receives rel=“no_follow” attributes.
I have also tried conditionals like this:
{exp:comment:entries sort="asc" weblog="blog|prof_ergo"}
<div class="{switch="comment_list|comment_list_alt"}">
{if member_group == "1|6"}
{comment}
{if:elseif group != "1|6"}
{exp:no_follow whitelist="n"}
{comment}
{/exp:no_follow}
{/if}
<p>By {name} on {comment_date format="%M %d, %Y"}</p>
</div><!-- closing .comment_list div -->
{/exp:comment:entries}
But I received the same results. Am I misusing this plugin? I found little in the forums regarding using it. Or alternately, is there a better plugin that would accomplish the same thing?