I need to disable RichText Editor but only for customer New Ticket interface. How could I do it? Maybe modifying CustomerTicketMessage template or module?
Thanks for help.
Disable RichText editor only in customer interface
Re: Disable RichText editor only in customer interface
I forgot to write down my OTRS version. Is 3.3.1
-
- Znuny expert
- Posts: 213
- Joined: 04 Nov 2012, 23:58
- Znuny Version: OTRS 4.x
- Real Name: Esteban
- Company: NORTON DE COLOMBIA
Re: Disable RichText editor only in customer interface
Create an empty file called:
and place it in
dont forget to set permissions.. if it is not working, restart apache
Code: Select all
CustomerRichTextEditor.dtl
Code: Select all
<OTRS_HOME>/Custom/Kernel/Output/HTML/Standard
-
- Znuny expert
- Posts: 213
- Joined: 04 Nov 2012, 23:58
- Znuny Version: OTRS 4.x
- Real Name: Esteban
- Company: NORTON DE COLOMBIA
Re: Disable RichText editor only in customer interface
by the way, it will only disable the ckeditor when creating/replying a ticket in customer interface..but it WONT disable html.. that implies that a customer can still write plain html and OTRS will parse it. If you want to disable html as well, you will have to edit CustomerTicketMessage.pm by setting
in new subrutine
Code: Select all
$Self->{LayoutObject}->{BrowserRichText} = 0;
Re: Disable RichText editor only in customer interface
Thanks for your answer. It works fine.