Edit: sorry, below is the method that will display a star next to everyones name if the viewer is unverified, but im sure you can tweak it! Try replacing $bbuserinfo with $post and tell me if it works, if not you have to ask someone else
Ok done, find where you want to put the message or image and insert this:
PHP Code:
<if condition="$bbuserinfo['usergroupid'] == '1'">MESSAGE</if>
Replace 1 with the ID of the usergroup you want to show it too and replace MESSAGE with what you want them to see.
so if you wanted people that are not verified to see a star, assuming your un verified by email usergroup is 3 and your star is at
http://www.alchemist-team.net/star.gif
You find this in your posbit or postbit legacy template:
PHP Code:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
and replace it with this:
PHP Code:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]"><if condition="$bbuserinfo['usergroupid'] == '1'"></if>$post[musername]</a>