Hi!
For priority open index.php in a plain text editor (like Notepad) and delete lines 121-128:
Code: Select all
<tr>
<td align="right" width="150"><?php echo $hesklang['priority']; ?>: <font class="important">*</font></td>
<td align="left" width="600"><select name="priority">
<option value="3" <?php if($_SESSION['c_priority']==3) {echo 'selected';} ?>><?php echo $hesklang['low']; ?></option>
<option value="2" <?php if($_SESSION['c_priority']==2) {echo 'selected';} ?>><?php echo $hesklang['medium']; ?></option>
<option value="1" <?php if($_SESSION['c_priority']==1) {echo 'selected';} ?>><?php echo $hesklang['high']; ?></option>
</select></td>
</tr>
Also change line 255 from
Code: Select all
<p align="center"><input type="submit" value="<?php echo $hesklang['sub_ticket']; ?>" class="button"></p>
to
Code: Select all
<p align="center"><input type="hidden" name="priority" value="3"><input type="submit" value="<?php echo $hesklang['sub_ticket']; ?>" class="button"></p>
As for the subject - you want all
tickets to have the same subject?? Or just the subject of
e-mail that notifies you of a new ticket?