Script URL: http://www.hesk.com/demo.php
Version of script: 2.6.7
How to change field sites ? For example , status field in the beginning of the table .
Swap fields in table
Moderator: mkoch227
Re: Swap fields in table
There's no built-in way of doing it, you will need to modify HTML code output in inc/ticket_list.inc.php file to achieve this.
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
Re: Swap fields in table
+ hesk_settings.inc.php (// ==> TICKET LIST)
Thank

Re: Swap fields in table
Headers are printed in the same file.
Try this:
1. open hesk_settings.php file and copy line that starts with
2. in ticket_list.inc.php find this line
3. paste the line from settings file just ABOVE the line in step 2, then re-order the list of fields in that code
Try this:
1. open hesk_settings.php file and copy line that starts with
Code: Select all
$hesk_settings['ticket_list']
Code: Select all
foreach ($hesk_settings['ticket_list'] as $field)
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
Re: Swap fields in table
It worked!
Where can I change the sorting by status?
default:
0 => 'NEW',
1 => 'WAITING REPLY',
2 => 'REPLIED',
3 => 'RESOLVED (CLOSED)',
4 => 'IN PROGRESS',
5 => 'ON HOLD',
necessary status (3 => 'RESOLVED (CLOSED)',), display at the end of the table.
Status was close to the very end.
Where can I change the sorting by status?
default:
0 => 'NEW',
1 => 'WAITING REPLY',
2 => 'REPLIED',
3 => 'RESOLVED (CLOSED)',
4 => 'IN PROGRESS',
5 => 'ON HOLD',
necessary status (3 => 'RESOLVED (CLOSED)',), display at the end of the table.
Status was close to the very end.