Quicker navigation

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
RazorElite
Posts: 5
Joined: Sat Mar 17, 2007 3:36 pm

Quicker navigation

Post by RazorElite »

I was wondering if there is any way I can do any of the following things to speed up navigation:

1. Automatically close a ticket when I respond (without having to tick close each time)
2. Automatically go back to the main page, without having to view the screen that gives the option to view ticket or go to main page.
3. Automatically move to next ticket in list as soon as I reply to one.

These are just some things I think will save a bit of time in answering a large number of tickets. So is there any way to do any of them?
Klemen
Site Admin
Posts: 10141
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

These are actually good suggestions, I will add them to my todo list for the next release (as optional settings).

You can try these (unofficial) tricks:

1. Open admin_ticket.php in notepad, find code

Code: Select all

<input type="checkbox" name="close" value="1">
and change it to

Code: Select all

<input type="checkbox" name="close" value="1" checked>
2. Open adnim_reply_ticket.php and do this:
2.1 Delete line 41

Code: Select all

require_once('inc/header.inc.php');
2.2 Just ABOVE line 125

Code: Select all

/* Print admin navigation */
paste this code:

Code: Select all

Header('Location: admin_main.php');
exit();
3. needs some more consideration, will probably include it in the next release.
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
RazorElite
Posts: 5
Joined: Sat Mar 17, 2007 3:36 pm

Post by RazorElite »

Worked great! Thanks. Definitely makes things quite a bit easier and quicker.
Post Reply