Hello,
I am using Hesk, an I want to know if it is possible to list the last message before all others messages ? Actualy the last message appear at the bottom of the page.
Thank you...
Best regards.
Sort the messages
Moderator: mkoch227
Try changing this code in file "print_tickets.inc.php" (inside "inc" folder) to
Code: Select all
$sort = hesk_input($_GET['sort']) or $sort='priority';
Code: Select all
$sort = hesk_input($_GET['sort']) or $sort='lastchange'; if (!isset($_GET['asc'])) {$_GET['asc']=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
Ah, sorry, misunderstood you. Undo the change I suggested last time and rather edit admin_ticket.php, change to and the same in ticket.php
This will make the last message appear second which may confuse some people (it would take quite some more editing to make the original post at the bottom and is out of the scope of my support here). So rather than doing what suggested above you can try with hiding replies like this:
viewtopic.php?t=1466
Code: Select all
$sql = "SELECT * FROM `hesk_replies` WHERE `replyto`='$ticket[id]' ORDER BY `id` ASC";
Code: Select all
$sql = "SELECT * FROM `hesk_replies` WHERE `replyto`='$ticket[id]' ORDER BY `id` DESC";
This will make the last message appear second which may confuse some people (it would take quite some more editing to make the original post at the bottom and is out of the scope of my support here). So rather than doing what suggested above you can try with hiding replies like this:
viewtopic.php?t=1466
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