Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Is it possible to display the ticket ID next to every reply when viewing an open ticket? I ask because I have some tickets that have gone back and forth with over 50 replies! When I scroll down to the bottom to read what the customer has left me, I have to scroll all the way back up to the top to see their ticket number, so I can research the matter.
Can I edit the admin_ticket.php file to display the TICKET ID under each customer's reply?
Adding ticket# to ticket reply in admin
Moderator: mkoch227
Re: Adding ticket# to ticket reply in admin
This should do the trick, but backup original admin_ticket.php first!
1. open admin_ticket.php in an editor
2. find this line:
3. BELOW this line find the first
4. BELOW this </tr> paste
5. Save, upload and test
1. open admin_ticket.php in an editor
2. find this line:
Code: Select all
<?php echo $reply['name']; ?>
Code: Select all
</tr>
Code: Select all
<tr>
<td><?php echo $hesklang['trackID']; ?></td>
<td><?php global $trackingID; echo $trackingID; ?></td>
</tr>
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