Page 1 of 1

How to disable "Submit" button and multiple submissions in Hesk3.0.1?

Posted: Tue May 12, 2020 4:37 pm
by dipen
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?

Re: How to disable "Submit" button and multiple submissions in Hesk3.0.1?

Posted: Tue May 12, 2020 5:57 pm
by Klemen
In Hesk 3 you will need to edit the file \theme\hesk3\customer\create-ticket\create-ticket.php

Search for

Code: Select all

<button type="submit"
Add this code after "submit"

Code: Select all

onclick="this.disabled=true;this.innerHTML='Sending, please wait...';this.form.submit();"

Re: How to disable "Submit" button and multiple submissions in Hesk3.0.1?

Posted: Wed May 13, 2020 2:58 pm
by dipen
Yes, it is working fine. Thanks, Klemen for your support.