I am trying to change the HTML on the site and am having a hard time getting the system to hook my changes. I am working with OTRS 5.
In the documentation (http://otrs.github.io/doc/manual/admin/ ... hemes.html) it specifies to do the following:
- 1. Create a directory called Kernel/Output/HTML/Company and copy all files that you like to change, from Kernel/Output/HTML/Standard into the new folder.
2. Customize the files in the directory Kernel/Output/HTML/Company, and change the layout to your needs.
3. To activate the new theme, add them in SysConfig under Frontend::Themes.
For step 1, since the change from Kernel/Output/HTML/Standard to Kernel/Output/HTML/Templates/Standard, I have tried copying my modified <my_theme>/*.tt files into both the Templates dir and the Standard dir.
For step 3, I have tried configuring the Framework.xml file to the following:
Code: Select all
<ConfigItem Name="Frontend::Themes" Required="0" Valid="1">
<Description Translatable="1">Activates the available themes on the system. Value 1 means active, 0 means inactive.</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<Hash>
<Item Key="Standard">1</Item>
<Item Key="<my_theme>">1</Item>
<Item Key="Lite">0</Item>
</Hash>
</Setting>
</ConfigItem>
Any guidance on what I am doing wrong here would be much appreciated.
Thanks,
Jason