Script URL:
Version of script: 0.94.1
What terms did you try when SEARCHING for a solution:
not requiring email address
Write your message below:
I would like to not require a email address or message (I am using custom fields) on the ticket submitting page is that possible? I am using this great system to track special orders.
Thanks for the software and help
Robert
Not requiring email address
Moderator: mkoch227
In submit_ticket.php try changing to
and
to
You can disable any other fields similarly.
Code: Select all
$email=hesk_validateEmail($_POST['email'],'ERR',0) or $hesk_error_buffer[]=$hesklang['enter_valid_email'];
Code: Select all
$email=hesk_validateEmail($_POST['email'])
Code: Select all
$message=hesk_input($_POST['message']) or $hesk_error_buffer[]=$hesklang['enter_message'];
Code: Select all
$message=hesk_input($_POST['message']);
You can disable any other fields similarly.
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