Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
Siora Offline
Member
 
Siora's Avatar
 
Posts: 1,283
Join Date: Apr 2007
Location: Toronto Canada
KB Widget - 08-06-2007, 02:22 AM

I've removed the KB widget from one of my user groups however when the group selects submit ticket, they still see this:

"If you can't find a solution to your problems in our knowledgebase, you can fill in the fields below with as much detailed information as possible and send it to our support personnel"

If the KB widget is disabled this shouldn't be displayed. Is this a bug or something else?


Siora Solutions Inc.
www.sioraIT.com
   
Reply With Quote
  (#2) Old
craigbrass Offline
Senior Member
 
Posts: 5,922
Join Date: Jun 2005
Location: Cumbria, UK
08-06-2007, 07:34 AM

All you need to do is set it not to show the KB widget in the user groups section of the staff area.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
  (#3) Old
Sheep Offline
Member
 
Sheep's Avatar
 
Posts: 350
Join Date: Feb 2007
Location: Lyon, France
08-06-2007, 07:54 AM

I Took a look at the code (Do you have an owned version?).

this is not a bug, it's a feature request.


They're displaying the module description and the current module description are (for each steps) language phrase (admin, manage phrase): dsubmitticket, dsubmitticketdep, dsubmitticketdepmb, dsubmitticketmb (and those phrase are including the "if you can't blah blah...".

Feature code (send it as a Feature request to kayako team if you want):
Create a new phrase "submittipkb" with the "if you can't" phrase.
In module/tickets/client_submit.php
changes every
PHP Code:
$template->assign("sectiondesc"$_SWIFT["language"]["dsubmitticket"]); 
(and the other phrases)
with a
PHP Code:
$template->assign("sectiondesc"$sectiondesc
And set just before $sectiondesc to
PHP Code:
$sectiondesc $_SWIFT["language"]["dsubmitticket"];
if( 
$_SWIFT["user"]["permissions"]["perm_canviewkb"]) 
$sectiondesc .= $_SWIFT["language"]["submittipkb"]; 
Something like that.

MSN me if you need more infos


Antoine "Sheep" BERMON
-- Lurking around there --

Last edited by Sheep; 08-06-2007 at 07:57 AM..
   
Reply With Quote
  (#4) Old
craigbrass Offline
Senior Member
 
Posts: 5,922
Join Date: Jun 2005
Location: Cumbria, UK
08-06-2007, 09:08 AM

Ooops, I mistread your initial post. I thought you were meaning you had removed the module and it was still showing it. I see what you mean now.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
Reply

Tags
widget

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



Powered by vBulletin® Version 3.7.5
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Help desk software by Kayako.


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