Answer Staff in color

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Markco
Posts: 18
Joined: Mon Jun 22, 2009 10:05 am

Answer Staff in color

Post by Markco »

Hello,

I would like to put a color on the names of the answers of the Staff here:

admin_ticket.php?track=

In advance thank you for your answer
Greetings
Sorry, I use a French / English on-line translator
Klemen
Site Admin
Posts: 10143
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Try changing

Code: Select all

if ($i) {$color='class="ticketrow"'; $i=0;}
to

Code: Select all

if ($reply['lastreplier']) {$color='class="ticketrow"'; $i=0;}
in admin_ticket.php file. This way all replies by staff will have blue background (class ticketrow in the hesk_style.css file) and replies by customers will have white background (class ticketalt in the hesk_style.css file).
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Markco
Posts: 18
Joined: Mon Jun 22, 2009 10:05 am

Post by Markco »

Thank you for the answer but I made the modification and everything is white: (
Sorry, I use a French / English on-line translator
Klemen
Site Admin
Posts: 10143
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Try this one:

Code: Select all

if ($reply['staffid']) {$color='class="ticketrow"'; $i=0;}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Markco
Posts: 18
Joined: Mon Jun 22, 2009 10:05 am

Post by Markco »

Thank you but It is functional partially because certain tickets stay in background white
Sorry, I use a French / English on-line translator
Post Reply