Using the most recent version of PHP
Was wondering how we could remove the subject field from the support ticket. Already tried to modify the ticket.php field and the index.php files with no success. Any help would be appriciated. Thank you guys.
Removing Subject Field
Moderator: mkoch227
To completely remove it would require quite some work. I would recommend that you remove the subject input field in the "index.php" file and in the submit_ticket.php change to a default value which will be the same to all tickets, for example
Code: Select all
$subject = hesk_input($_POST['subject']) or $hesk_error_buffer[]=$hesklang['enter_ticket_subject'];
Code: Select all
$subject = "Click here to view";
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
-
- Posts: 28
- Joined: Thu Sep 25, 2008 3:19 am
-
- Posts: 28
- Joined: Thu Sep 25, 2008 3:19 am
Glad it worked for you and thanks for supporting my work by purchasing a license!
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