Script URL:
Version of script: 2.8.2
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:
I created a new user with limited permissions and this resulted in the Add Note button not being visible. I've enabled everything that looks like it would be remotely related to this function with no success. Is there a set of permissions that must be enabled before this function is available to a user?
"Add Note" button not showing
Moderator: mkoch227
Re: "Add Note" button not showing
Add note shows only for users who can reply to tickets (have "Reply to tickets" permission checked).
If you want to change that, you can modify admin/admint_ticket.php; find and change it to
If you want to change that, you can modify admin/admint_ticket.php; find
Code: Select all
if ($can_reply)
Code: Select all
if (true)
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: "Add Note" button not showing
Thanks very much, works great.
This change appears to affect only the ability to use Notes. I'd like to allow status changes as well but I not able unless "Reply to tickets" permission is checked. Is there a simple edit for this as well or does this involve more significant code changes.
Thanks
This change appears to affect only the ability to use Notes. I'd like to allow status changes as well but I not able unless "Reply to tickets" permission is checked. Is there a simple edit for this as well or does this involve more significant code changes.
Thanks
Re: "Add Note" button not showing
You'd have to delete from admin/change_status.php
Code: Select all
hesk_checkPermission('can_reply_tickets');
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: "Add Note" button not showing
Excellent, thanks!