Status view column edit

Moderator: crythias

Locked
mantyyzz
Znuny newbie
Posts: 19
Joined: 04 Jul 2014, 12:38
Znuny Version: 3.1.15

Status view column edit

Post by mantyyzz »

Hello everyone , I need to edit status view column FROM / TITLE. I don't need to show FROM information in that column, I need just a TITLE. How to remove that information from column ?

Thanks for help.
You do not have the required permissions to view the files attached to this post.
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Status view column edit

Post by reneeb »

Only in StatusView or in all views (search results, QueueView, ...)?

If you want it only for status view, you have to write your own OutputFilter. Otherwise, you can edit the template:

OTRS4:
Remove https://github.com/OTRS/otrs/blob/rel-4 ... ll.tt#L438 and https://github.com/OTRS/otrs/blob/rel-4 ... ll.tt#L444

OTRS3.3:
Remove https://github.com/OTRS/otrs/blob/rel-3 ... l.dtl#L448 and https://github.com/OTRS/otrs/blob/rel-3 ... l.dtl#L454
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
mantyyzz
Znuny newbie
Posts: 19
Joined: 04 Jul 2014, 12:38
Znuny Version: 3.1.15

Re: Status view column edit

Post by mantyyzz »

Thanks for help , done that. One more question , how to remove ,,From /'' word I don't need it.

OTRS 3.3.8
You do not have the required permissions to view the files attached to this post.
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Status view column edit

Post by reneeb »

In Kernel/Output/HTML/TicketOverviewSmall.pm (see https://github.com/OTRS/otrs/blob/rel-3 ... ll.pm#L655) replace

Code: Select all

$TranslatedWord = $Self->{LayoutObject}->{LanguageObject}->Get('From') . ' / ';
with

Code: Select all

$TranslatedWord = '';
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
mantyyzz
Znuny newbie
Posts: 19
Joined: 04 Jul 2014, 12:38
Znuny Version: 3.1.15

Re: Status view column edit

Post by mantyyzz »

Big thanks !!!! :)
Locked