Adding note after Subject

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
kevinb
Posts: 6
Joined: Wed Jan 25, 2012 2:54 pm

Adding note after Subject

Post by kevinb »

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.
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: Adding note after Subject

Post by Klemen »

In "index.php" find

Code: Select all

<?php if (in_array('subject',$_SESSION['iserror'])) {echo ' class="isError" ';} ?> />
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 echo $hesklang['subject']; ?>:
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
kevinb
Posts: 6
Joined: Wed Jan 25, 2012 2:54 pm

Re: Adding note after Subject

Post by kevinb »

Didn't get it exactly where I thought originally, but I came up with something that might actually work better. Thanks!
Post Reply