Kayako logo
Style & Design Customizing the look and feel of your support desk? Share thoughts and request assistance here.

Kayako develops robust helpdesk software, live chat and real-time visitor monitoring software.
Kayako is trusted by more than 30,000 organizations, including a number of Fortune 500 companies and government institutions.
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
yopyop Offline
New Member
 
Posts: 4
Join Date: Apr 2009
email_staffreply template - 23-04-2009, 09:33 AM

Hi,

I want to modify this template and add some text in the fieldset of the general information of the ticket:

Code:
<fieldset style="margin-bottom: 6px; color: #333333;FONT: 11px Verdana, Tahoma;PADDING:3px;">
<legend><{$language[ticketdetails]}></legend><BR>
<{$language[articketid]}><{$ticket[fticketid]}><BR>
<{$language[ardepartment]}><{$ticket[department]}><BR>
<{$language[arpriority]}><font color="<{$priority[frcolorcode]}>"><{$ticket[priority]}></font><BR>
<{$language[arstatus]}><font color="<{$status[statuscolor]}>"><{$ticket[status]}></font><BR>

//My text here...
</fieldset>
I can see the text in the html mail but it doesn't appear in the fieldset but below...

How can I fix it?

Thanks!
   
Reply With Quote
  (#2) Old
tom@ecentralsto Offline
Member
 
tom@ecentralsto's Avatar
 
Posts: 72
Join Date: Sep 2007
Location: Florida
Adding text to the email_staffreply template - 23-04-2009, 03:07 PM

First, are you really using this code in your template?

Code:
<fieldset style="margin-bottom: 6px; color: #333333;FONT: 11px Verdana, Tahoma;PADDING:3px;">
<legend><{$language[ticketdetails]}></legend><BR>
<{$language[articketid]}><{$ticket[fticketid]}><BR>
<{$language[ardepartment]}><{$ticket[department]}><BR>
<{$language[arpriority]}><font color="<{$priority[frcolorcode]}>"><{$ticket[priority]}></font><BR>
<{$language[arstatus]}><font color="<{$status[statuscolor]}>"><{$ticket[status]}></font><BR>

//My text here...
</fieldset>
If you are then remove the "//" before the text you are adding.

Also, you might want to make a container like this for your text.

Code:
<div class="mytext">My Text goes here...</div>
Or using a table:
Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="mytexttable">
  <tr>
    <td class="mytext">My Text goes here...</td>
  </tr>
</table>
I have added the class so later you can style your text however you wish using the CSS in the Templates of your ADMIN.


Thomas Pursifull
(tom ]at[ ecentralstores.com)
   
Reply With Quote
  (#3) Old
yopyop Offline
New Member
 
Posts: 4
Join Date: Apr 2009
24-04-2009, 07:41 AM

Thanks for your answer!

No I'm not using the "//" in my template!! I'm using a variable that I've added in the source code...

The strangest is that once all is OK in the html mail and the text is in the fieldset and once the text is below...
   
Reply With Quote
  (#4) Old
tom@ecentralsto Offline
Member
 
tom@ecentralsto's Avatar
 
Posts: 72
Join Date: Sep 2007
Location: Florida
Please, post the code your talking about - 24-04-2009, 08:12 PM

Post the code that is in the template and lets take a look.



Thomas Pursifull
(tom ]at[ ecentralstores.com)
   
Reply With Quote
  (#5) Old
yopyop Offline
New Member
 
Posts: 4
Join Date: Apr 2009
27-04-2009, 06:03 AM

Here's my code

Code:
<fieldset style="margin-bottom: 6px; color: #333333;FONT: 11px Verdana, Tahoma;PADDING:3px;">
<legend><{$language[ticketdetails]}></legend><BR>
<{$language[articketid]}><{$ticket[fticketid]}><BR>
<{$language[ardepartment]}><{$ticket[department]}><BR>
<{$language[arpriority]}><font color="<{$priority[frcolorcode]}>"><{$ticket[priority]}></font><BR>
<{$language[arstatus]}><font color="<{$status[statuscolor]}>"><{$ticket[status]}></font><BR>
<{$language[timeworked]}><{$var1}><BR>
<{$language[timebillable]}><{$var2}><BR>
</fieldset>
I've added the variables timeworked and timebillable.
   
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using Template Groups - A Tutorial Matthew How do I? 9 03-02-2010 04:40 PM
Loginshare and Template Groups Emma SupportSuite, eSupport and LiveResponse 2 01-07-2008 10:18 AM
Custom Registration Activated Email for different template groups anur How do I? 0 21-02-2008 08:37 PM
Template based Guest accounts Aaron How do I? 1 19-01-2008 09:08 AM



Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78