Adding ticket# to ticket reply in admin

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
onlinesource
Posts: 1
Joined: Thu Aug 16, 2012 6:13 pm

Adding ticket# to ticket reply in admin

Post by onlinesource »

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?
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: Adding ticket# to ticket reply in admin

Post by Klemen »

This should do the trick, but backup original admin_ticket.php first!

1. open admin_ticket.php in an editor
2. find this line:

Code: Select all

<?php echo $reply['name']; ?>
3. BELOW this line find the first

Code: Select all

</tr>
4. BELOW this </tr> paste

Code: Select all

<tr>
<td><?php echo $hesklang['trackID']; ?></td>
<td><?php global $trackingID; echo $trackingID; ?></td>
</tr>
5. Save, upload and test
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
Post Reply