Page 1 of 1
Adding note after Subject
Posted: Wed Feb 22, 2012 2:42 pm
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.
Re: Adding note after Subject
Posted: Wed Feb 22, 2012 4:19 pm
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']; ?>:
Re: Adding note after Subject
Posted: Thu Feb 23, 2012 6:25 pm
by kevinb
Didn't get it exactly where I thought originally, but I came up with something that might actually work better. Thanks!