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
Answer Staff in color
Moderator: mkoch227
Answer Staff in color
Sorry, I use a French / English on-line translator
Try changing
to 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).
Code: Select all
if ($i) {$color='class="ticketrow"'; $i=0;}
Code: Select all
if ($reply['lastreplier']) {$color='class="ticketrow"'; $i=0;}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
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


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
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 
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


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