"Add Note" button not showing

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
cwyenberg
Posts: 56
Joined: Sat Jun 16, 2018 12:53 am

"Add Note" button not showing

Post by cwyenberg »

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?
Klemen
Site Admin
Posts: 10162
Joined: Fri Feb 11, 2005 4:04 pm

Re: "Add Note" button not showing

Post by Klemen »

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

Code: Select all

if ($can_reply)
and change it to

Code: Select all

if (true)
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
cwyenberg
Posts: 56
Joined: Sat Jun 16, 2018 12:53 am

Re: "Add Note" button not showing

Post by cwyenberg »

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
Klemen
Site Admin
Posts: 10162
Joined: Fri Feb 11, 2005 4:04 pm

Re: "Add Note" button not showing

Post by Klemen »

You'd have to delete

Code: Select all

hesk_checkPermission('can_reply_tickets');
from admin/change_status.php
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
cwyenberg
Posts: 56
Joined: Sat Jun 16, 2018 12:53 am

Re: "Add Note" button not showing

Post by cwyenberg »

Excellent, thanks!
Post Reply