Hide agent name in last replier section

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
ztank
Posts: 36
Joined: Thu Dec 19, 2024 3:59 pm

Hide agent name in last replier section

Post by ztank »

HESK 3.5.2
Is it possible to hide the agent name in last replier section when a customer visit hist ticket page?
Or at least have an option to make it something generic such as:
Last replier: Support Team or Support Agent or something like that
Thanks.
Klemen
Site Admin
Posts: 10141
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hide agent name in last replier section

Post by Klemen »

Changing this

Code: Select all

	if (empty($ticket['repliername']))
	{
		$ticket['repliername'] = $hesklang['staff'];
	}
to this

Code: Select all

$ticket['repliername'] = $hesklang['staff'];
inside ticket.php should do the trick.
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
ztank
Posts: 36
Joined: Thu Dec 19, 2024 3:59 pm

Re: Hide agent name in last replier section

Post by ztank »

Thanks for the solution.
Would you consider to add this enhancement if future releases?
Thanks.
Klemen
Site Admin
Posts: 10141
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hide agent name in last replier section

Post by Klemen »

We have to be careful when adding new settings and features because anything we add must then be maintained forever.

Is there a need for such a feature by others? It hasn't been requested yet.
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
ztank
Posts: 36
Joined: Thu Dec 19, 2024 3:59 pm

Re: Hide agent name in last replier section

Post by ztank »

I think it would be better for agents to be able to protect their privacy and generalities such as the name and last name or eventually to provide the possibility to let them pick a nickname which is going to be the one showed open when they reply to the customer. Or as you’ve already provided have a Setting that replace the agent names with staff.
My two cents.
Thanks.
Klemen
Site Admin
Posts: 10141
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hide agent name in last replier section

Post by Klemen »

A nickname makes sense, yes. Will consider, but not a priority right now.
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
Post Reply