Log in

View Full Version : I want to make admin's colour red in last subject and last message


vBMerkezi
07-09-2012, 05:32 PM
I just want to be red colour who write last message or answer message. If admin who write answer message to subject be red colour, I did that code
<if condition="in_array($gthread[usergroupid], array(6))"> <a href="member.php?$session[sessionurl]u=$gthread[userid]" target="_blank"><font color="#FF0000">$gthread[username]</font></a> <else /> <a href="member.php?$session[sessionurl]u=$gthread[userid]" target="_blank">$gthread[username]</a> </if>
I made that code like this if admin write subject.
<if condition="in_array($gthread[usergroupid], array(6))"> <a href="member.php?$session[sessionurl]u=$gthread[postuserid]" target="_blank"><font color="#FF0000">$gthread[postusername]</font></a> <else /> <a href="member.php?$session[sessionurl]u=$gthread[postuserid]" target="_blank">$gthread[postusername]</a> </if>
but i got error. this code didnt work if user write subject. for example user write subject and admin write message colour is red but users colour is red too. can you help me for this failure?

--------------- Added 1341873061 at 1341873061 ---------------

???

vBMerkezi
07-10-2012, 06:02 PM
????

BirdOPrey5
07-11-2012, 11:52 AM
First we can simplify the code a bit if it's just the administrator your looking for:


<if condition="$gthread[usergroupid] == 6">

*CODE FOR ADMINS

<else />

*CODE FOR EVERYONE ELSE

</if>


That assumes that $gthread contains a value called "usergroupid".

vBMerkezi
07-11-2012, 05:57 PM
As you say I applied excatly these codes, but when an user opened a thread (topic) and administrator wrote a reply to thread, the colour of user is also turning to red??

Vaq
07-11-2012, 06:35 PM
Where would you put that code

vBMerkezi
07-11-2012, 06:48 PM
Eklenti Adı : [AJAX] DZMods Pro - Top X

Template : dzm_latest_post_bit

Vaq
07-11-2012, 06:50 PM
Thank you

BirdOPrey5
07-11-2012, 08:18 PM
Then maybe $gthread[usergroupid] isn't the usergroupid of the user who posted the thread. Maybe it doesn't even exist.