
Munawar Zeeshn wrote:
In the customer.pl , how can I change the LOGO and COMPANY NAME ??
Please search the archives first, this has been answered numerous times in the past. If you're using the Standard theme check the *.dtl templates in ~otrs/ Kernel/Output/HTML/Standard. LOGO and COMPANY NAME are found in CustomerHeader.dtl. If you're looking into creating a full custom theme I'd suggest to copy the Standard directory under another name and make your modifications in there (and then set that as the theme). Nils Breunese. P.S. Don't underestimate the power of grep to find where LOGO and COMPANY LOGO originate: $ grep -rn LOGO ~otrs /opt/otrs/Kernel/Output/HTML/Standard/CustomerHeader.dtl:39: <td width="120" class="header"> LOGO </td> $ grep -rn COMPANY\ NAME ~otrs /opt/otrs/Kernel/Output/HTML/Standard/CustomerHeader.dtl:40: <td class="header"> <a href="" class="headeritem">COMPANY NAME</a> </td>