Quote:
Originally Posted by robertpro2a
The problem is, then I have to create a separate user group titled "donors". And each time they donate I have to move them to that group...right?
|
Yes, that is the easy way.
I suppose if you only have a couple of users who have donated, you could put a condition in your template to put something:
HTML Code:
<if condition="in_array($userinfo[userid],array(x,y,z))">
Text for those that donated
</if>
where x,y,z are userids of those that donated.
(NOT TESTED! You may have to put parenthesis around userid or something.)