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
How do I hide the "To" field in my Ticket details screen?
Moderator: crythias
-
- 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?
You do not have the required permissions to view the files attached to this post.
-
- 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
Hi!
You can try to disable it in module AgentTicketZoom.dtl. It's no way to disable it in SysConfig as I know.
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)
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)
-
- 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

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