| ||||||||||||
![]() |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
(#1)
|
(#2)
|
| Operations Manager Posts: 5,270 Join Date: Jan 2006 Location: United Kingdom |
09-10-2007, 12:13 PM
Hi Suresh, No, there is not. You can remove Closed tickets from this view completely by editing the status properties (admincp), but you cannot set a predicate for whether they should be displayed or not relating to how "old" they are. -------------------------------------------------------------------
|
| | |
(#3)
|
(#4)
|
| Senior Member Posts: 3,692 Join Date: Aug 2006 Location: Mumbai, India |
09-10-2007, 12:24 PM
Did you restore the templates after you upgraded your software build? Professional and Affordable Kayako Skins - Specialists in Kayako Skinning & Customization - Professional Paid Support Our Skins and Services - http://www.supportskins.com/store/ SupportSkins.com - http://www.supportskins.com/ |
| | |
(#5)
|
(#6)
|
| Operations Manager Posts: 5,270 Join Date: Jan 2006 Location: United Kingdom |
09-10-2007, 12:25 PM
Hi Suresh, I had misunderstood you. You cannot remove the entire row for some statuses only. However, you can remove the cell that shows the status (for all statuses) in the client support centre by modifying the templates. The template you need to edit it under Tickets -> viewticket, around this code: HTML Code: <td width="15%" align="left" valign="top" class="row2"><span class="smalltext"><{$language[vtstatus]}></span></td> <td width="35%" align="left" valign="top"><span class="smalltext"><font color="<{$status[statuscolor]}>"><{$ticket[status]}></font></span></td> -------------------------------------------------------------------
|
| | |
(#7)
|
| Senior Member Posts: 3,692 Join Date: Aug 2006 Location: Mumbai, India |
09-10-2007, 12:28 PM
Use the if else clause to remove tickets with status set as Closed however this will remove all tickets set with Closed status irrelevant to the time frame. Professional and Affordable Kayako Skins - Specialists in Kayako Skinning & Customization - Professional Paid Support Our Skins and Services - http://www.supportskins.com/store/ SupportSkins.com - http://www.supportskins.com/ |
| | |
(#8)
|
(#9)
|
(#10)
|
(#11)
|
| Senior Member Posts: 3,692 Join Date: Aug 2006 Location: Mumbai, India |
28-05-2008, 12:11 PM
Can you please explain as to what exactly you are looking for? Professional and Affordable Kayako Skins - Specialists in Kayako Skinning & Customization - Professional Paid Support Our Skins and Services - http://www.supportskins.com/store/ SupportSkins.com - http://www.supportskins.com/ |
| | |
(#12)
|
(#13)
|
| Senior Member Posts: 3,692 Join Date: Aug 2006 Location: Mumbai, India |
28-05-2008, 02:25 PM
You need to edit the ticketlist template and edit: Code: <{foreach key=key value=ticket from=$ticketlist}>
<tr class="<{$ticket[rowclass]}>" onMouseOver="this.className='rowhighlight';" onMouseOut="this.className='<{$ticket[rowclass]}>';">
<td align="left" valign="middle" colspan="5"><img src="<{$themepath}>icon_ticketbullet.gif" border="0" align="absmiddle" /><a href="<{if $iswhmcs==true}>viewticket.php?<{else}><{$baseurl}><{/if}>_m=tickets&_a=viewticket&ticketid=<{$ticket[ticketid]}>"><b><{$ticket[fticketid]}>:</b> <{$ticket[subject]}></a></td>
</tr>
<tr class="<{$ticket[rowclass]}>">
<td align="center" valign="middle"><span class="smalltext"><{$ticket[lastactivity]}></span></td>
<td align="center" valign="middle"><span class="smalltext"><{$ticket[lastreplier]}></span></td>
<td align="center" valign="middle"><span class="smalltext"><font color="<{$ticket[statuscolor]}>"><{$ticket[status]}></font></span></td>
<td align="center" valign="middle"><span class="smalltext"><font color="<{$ticket[prioritycolor]}>"><{$ticket[priority]}></font></span></td>
<td align="center" valign="middle"><span class="smalltext"><{if $ticket[department] == 'private'}><{$language[private]}><{/if}><{if $ticket[department] != 'private'}><{$ticket[department]}><{/if}></span></td>
</tr>
<{/foreach}>
Code: <{foreach key=key value=ticket from=$ticketlist}>
<{if $ticket[status] == "Closed"}>
<{else}>
<tr class="<{$ticket[rowclass]}>" onMouseOver="this.className='rowhighlight';" onMouseOut="this.className='<{$ticket[rowclass]}>';">
<td align="left" valign="middle" colspan="5"><img src="<{$themepath}>icon_ticketbullet.gif" border="0" align="absmiddle" /><a href="<{if $iswhmcs==true}>viewticket.php?<{else}><{$baseurl}><{/if}>_m=tickets&_a=viewticket&ticketid=<{$ticket[ticketid]}>"><b><{$ticket[fticketid]}>:</b> <{$ticket[subject]}></a></td>
</tr>
<tr class="<{$ticket[rowclass]}>">
<td align="center" valign="middle"><span class="smalltext"><{$ticket[lastactivity]}></span></td>
<td align="center" valign="middle"><span class="smalltext"><{$ticket[lastreplier]}></span></td>
<td align="center" valign="middle"><span class="smalltext"><font color="<{$ticket[statuscolor]}>"><{$ticket[status]}></font></span></td>
<td align="center" valign="middle"><span class="smalltext"><font color="<{$ticket[prioritycolor]}>"><{$ticket[priority]}></font></span></td>
<td align="center" valign="middle"><span class="smalltext"><{if $ticket[department] == 'private'}><{$language[private]}><{/if}><{if $ticket[department] != 'private'}><{$ticket[department]}><{/if}></span></td>
</tr>
<{/if}>
<{/foreach}>
Professional and Affordable Kayako Skins - Specialists in Kayako Skinning & Customization - Professional Paid Support Our Skins and Services - http://www.supportskins.com/store/ SupportSkins.com - http://www.supportskins.com/ |
| | |
(#14)
|
| New Member Posts: 4 Join Date: May 2008 | Quote:
| |
| | |
(#15)
|
| Senior Member Posts: 3,692 Join Date: Aug 2006 Location: Mumbai, India |
28-05-2008, 02:34 PM
Should work, I tested it on our test installation ![]() Professional and Affordable Kayako Skins - Specialists in Kayako Skinning & Customization - Professional Paid Support Our Skins and Services - http://www.supportskins.com/store/ SupportSkins.com - http://www.supportskins.com/ |
| | |
![]() |
| Tags |
| center, closed, hide, status, support, tickets |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tickets not going into over due status | BradB | SupportSuite, eSupport and LiveResponse | 7 | 15-10-2007 03:27 PM |
| New Build: 3.10.02 STABLE | Ryan Lederman | News and Announcements | 0 | 05-03-2007 08:53 PM |