Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
How to disable the "Submit" button and multiple submissions in Hesk3.0.1. I am not finding in this code <input type="submit" in index.php.
Can anybody help me with this?
How to disable "Submit" button and multiple submissions in Hesk3.0.1?
Moderator: mkoch227
Re: How to disable "Submit" button and multiple submissions in Hesk3.0.1?
In Hesk 3 you will need to edit the file \theme\hesk3\customer\create-ticket\create-ticket.php
Search for
Add this code after "submit"
Search for
Code: Select all
<button type="submit"
Code: Select all
onclick="this.disabled=true;this.innerHTML='Sending, please wait...';this.form.submit();"
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
Re: How to disable "Submit" button and multiple submissions in Hesk3.0.1?
Yes, it is working fine. Thanks, Klemen for your support.