Good afternoon,
I'm trying to implement the same functionality from:
Frontend::Agent::TicketOverview
Ticket::Frontend::OverviewSmall###ColumnHeader
TicketTitle / LastCustomerSubject
Into the CustomerTicketOverview screen. (The screen that the customer sees with a listing of their current tickets)
My Customers are complaining that they are seeing the last subject in the overview, not the ticket title.
I would like to force the ticket title in this view. I haven't been able to find any configuration options related to this.
It's a definite possibility that I have overlooked something here. I appreciate any feedback.
Thanks.
[Solved]Customer TicketOverview Ticket Title vs Last Subject
Moderator: crythias
[Solved]Customer TicketOverview Ticket Title vs Last Subject
Last edited by Mydnyte on 06 Sep 2012, 18:36, edited 1 time in total.
OTRS 3.2.10 - FAQ - KUBUNTU 13.04 - MySQL 5.5 - Apache2.2
Re: Customer TicketOverview Ticket Title vs Last Subject
You can use the CustomerTicketOverView.dtl file to customize this. Copy and paste the code for existing columns to add new ones, or change the existing code to alter the data that is placed in each column.
Backend: OTRS 3.0.11 RedHat Enterprise Linux 6.2, Apache, MySQL with replication
Frontend: OTRS 3.0.11 RedHat Enterprise Linux 6.2 with SELinux, Apache SSL
Frontend: OTRS 3.0.11 RedHat Enterprise Linux 6.2 with SELinux, Apache SSL
Re: Customer TicketOverview Ticket Title vs Last Subject
Thanks for pointing me in the right direction.CSL wrote:You can use the CustomerTicketOverView.dtl file to customize this. Copy and paste the code for existing columns to add new ones, or change the existing code to alter the data that is placed in each column.
I edited the following item in /Kernel/Output/HTML/Standard/CustomerTicketOverview.dtl
Code: Select all
<!-- dtl:block:Record -->
<tr title="$QData{"TicketNumber"}" class="MasterAction">
<td class="Ticket">
<a href="$Env{"Baselink"}Action=CustomerTicketZoom;TicketNumber=$LQData{"TicketNumber"}" class="MasterActionLink">$QData{"TicketNumber"}</a>
</td>
<td class="Title">
<div>
<h2>$QData{"Title","60"}</h2>
- $QData{"Subject","200"}
</div>
</td>
<td class="Status" title="$Text{"$Data{"State"}"}">$Text{"$Data{"State"}"}</td>
<td class="Age" title="$TimeShort{"$Data{"Created"}"}">$QData{"Age","20"}</td>
</tr>
<!-- dtl:block:Record -->
Code: Select all
<h2>$QData{"Subject","60"}</h2>
Code: Select all
<h2>$QData{"Title","60"}</h2>
Thanks!
OTRS 3.2.10 - FAQ - KUBUNTU 13.04 - MySQL 5.5 - Apache2.2