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.
Status view column edit
Moderator: crythias
Status view column edit
You do not have the required permissions to view the files attached to this post.
-
- 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
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
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
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Re: Status view column edit
Thanks for help , done that. One more question , how to remove ,,From /'' word I don't need it.
OTRS 3.3.8
OTRS 3.3.8
You do not have the required permissions to view the files attached to this post.
-
- 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
In Kernel/Output/HTML/TicketOverviewSmall.pm (see https://github.com/OTRS/otrs/blob/rel-3 ... ll.pm#L655) replace with
Code: Select all
$TranslatedWord = $Self->{LayoutObject}->{LanguageObject}->Get('From') . ' / ';
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
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Re: Status view column edit
Big thanks !!!! 
