Assigning icons to registered users and admin
-
Okay, what I’m trying to do sounds simple in theory, but has turned out to be ridiculously difficult in practice, as I am throwing in the towel after three hours of hard effort and asking for help here.
What I would like is for all registered members of my blog to have a gray icon displayed next to their name in comments. This icon should be not associated to each member individually, or to their email address or URL, but to their registration status. Then, I would like to have myself, the admin, be distinguished with the same icon – only colorized (in this case, pink).
I have tried out three different plugins (comvatars, author highlight and official comments), and only managed to assign myself an icon, or assign a registered user AND me the gray icon, or given everyone BUT me icons.
The code I have been using, along with the official comments plugin, which should work in theory, but in actuality isn’t:
<?php if(comment_wpusername() != admin) echo "<img src='https://www.jenn.nu/wp-content/themes/nov07/images/member.gif' height='16' width='16' alt='Registered member' title='Registered member' class='commentsbyadmin' /> "; else if(comment_wpusername() == admin ) echo "<img src='https://www.jenn.nu/wp-content/themes/nov07/images/admin.png' height='16' width='16' alt='Registered member' title='Registered member' class='commentsbyadmin' /> "; ?>
To reiterate what I am trying to do in simple terms:
– All registered users will be marked with a gray icon next to their name
– Myself, the blog administrator, will be distinguished from the rest of the registered users with a pink icon next to my name
– Non-registered commenters will not have any type of icon next to their nameIf it helps, since I know how it is to try and explain something at 4am and make sense ?? , here is a visual example of what I am trying to accomplish:
https://farm3.static.flickr.com/2211/2142847205_f014f33fbd_o.gif
Thank you very much in advance for any assistance!
- The topic ‘Assigning icons to registered users and admin’ is closed to new replies.