EricR |
12-19-2006 10:22 PM |
In my case only certain usergroups can send PM's to more than one recipient so it makes sense to show the button for only these groups. If you'd like to do this as well, expand on the provided conditional as follows:
Quote:
<if condition="$post['replylink'] && THIS_SCRIPT == 'private' && is_member_of($bbuserinfo, XX,YY,ZZ)">
<a href="$post[replylink]&r=all" rel="nofollow"><img src="$stylevar[imgdir_button]/reply_all.gif" alt="$vbphrase[reply_to_all]" border="0" /></a>
</if>
|
Where XX, YY, ZZ, etc. are the usergroup id's that CAN see the "Reply To All" button.
|