Page 1 of 1

removing the required * from "message" field

Posted: Wed Jun 09, 2010 11:06 pm
by lynncap
/*************************************
Title:
Version:
Author:
Demo:
Download:
Website:

Short description:


*************************************/

I used the same directions posted for the email field on the message field to make it not required by deleting "or $hesk_error_buffer[]=$hesklang['enter_message']" from the message part in submit-ticket.php but i can't figure out how to removed the asterisk that says the fields is required. Thank you.

Posted: Thu Jun 10, 2010 7:03 am
by Klemen
In index.php change

Code: Select all

<?php echo $hesklang['message']; ?>: <font class="important">*</font>
to just

Code: Select all

<?php echo $hesklang['message']; ?>:

Posted: Thu Jun 10, 2010 6:18 pm
by lynncap
Thank you.