How do I hide the "To" field in my Ticket details screen?

Moderator: crythias

Locked
abar43
Znuny newbie
Posts: 12
Joined: 18 May 2010, 22:57
Znuny Version: ITSM2.0
Location: Miami, FL
Contact:

How do I hide the "To" field in my Ticket details screen?

Post by abar43 »

Can someone please help me figure out how to hide the "To" field (which shows the System Email Address Display Name) in my Ticket details screen as shown in the attached screen -shot below?
I am using OTRS::ITSM 3.0.5 on a windows server
Any assistance would be highly appreciated.
Thanks in advance
You do not have the required permissions to view the files attached to this post.
yuri0001
Znuny superhero
Posts: 630
Joined: 17 Mar 2011, 14:40
Znuny Version: 5.0.6
Real Name: Yuri Kolesnikov
Location: Russia

Re: How do I hide the "To" field in my Ticket details scree

Post by yuri0001 »

Hi!
You can try to disable it in module AgentTicketZoom.dtl. It's no way to disable it in SysConfig as I know.
Best regards Yuri Kolesnikov
OTRS 5.0.14, ITSM 5.0.14
SUSE 13.2, MariaDB 10.0.22(productive)
OTRS 5.0.14, ITSM 5.0.14(test)
abar43
Znuny newbie
Posts: 12
Joined: 18 May 2010, 22:57
Znuny Version: ITSM2.0
Location: Miami, FL
Contact:

RESOLVED! - How do I hide the "To" field in my Ticket detai

Post by abar43 »

:D
Thanks a million yuri0001
I was able make to change in AgentTicketZoom.pm
by removing "To" from the list of fields included on line 1668

Was:
for my $Key (qw(From To Cc)) {

I changed it to:
for my $Key (qw(From Cc)) {

Again, your help is much appreciated
Locked