I'd like to add a note next to the subject box on the Add a Ticket / Submit a Ticket page.
I went through a variety of the php files and this forum and was not able to figure out which one is correct.
Adding note after Subject
Moderator: mkoch227
Re: Adding note after Subject
In "index.php" find
You can add your note just after this code and it will be displayed next to the "Subject" box.
If you want to add a note before the box, the subject text is printed out by
Code: Select all
<?php if (in_array('subject',$_SESSION['iserror'])) {echo ' class="isError" ';} ?> />
If you want to add a note before the box, the subject text is printed out by
Code: Select all
<?php echo $hesklang['subject']; ?>:
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: Adding note after Subject
Didn't get it exactly where I thought originally, but I came up with something that might actually work better. Thanks!