Quantcast
Channel: Kayako Community Forums
Viewing all 12879 articles
Browse latest View live

Chat ID - sharing code

$
0
0
I would like to know how an operator can share the chat code for a live support chat so that a customer can reignite the same conversation at a later date.

I understand it is possible, but from my experience of being an operator I cannot see where the chat ID is located in order to share it with the customer.

Screen shots would be most appreciated.

Is there a way to disable the Live Chat survey?

$
0
0
I read somewhere that removing the text from the chatendednotificationsub and the
chatendsurvey phrases would disable the survey that follows a Live Chat session. I have removed the text from these areas, rebuilt cache, and yet I am still prompted for a survey if I cancel out of exiting the chat.

Does anyone know of a way to disable the Live Chat survey? Any help is appreciated.[FONT=times new...[/SIZE]

Is there a way to disable the Live Chat survey?

SLAs: big changes coming to Kayako. Your input welcome.

$
0
0
Hi everyone

Big changes are in the works for SLAs in Kayako.

As we roadmap, we would love to learn more about SLAs in our organization: how you use Kayako today, what Kayako isn't able to do for you and what your own ideas around SLA plans and targets in Kayako are.

Interested in having a short discussion?

Drop me an email: jamie.edwards@kayako.com

Viewing and Searching Tickets for all Staff

$
0
0
Hello:
I have my staff in different teams, but I want everyone in all the teams to be able to search for any ticket and view any ticket. What do I need to do to make this happen? I'm using 4.73, so that's the code I'm guessing I'll need to modify.

Thanks,
Brandon

Creation of specific Filters

$
0
0
Hello, guys! I'm new to the forum and I have a question to ask about filters.

I want to create a filter with a specific selection:

Status equals Open
Department equals X
Department equals Y
Department equals Z

Basically I want to see all open tickets on specific departments, it is easier for me to specify the ones I want because putting departments "not equal to" would take forever, specially when trying different setups.

When I tried like this no results were shown. Could you guys help me?...

Creation of specific Filters

Rich text editor for ticket replies ("WYSIWYG")

$
0
0
Hey,

I thought WYSIWYG Ticket editing was going to be part of V4? I can see TinyMCE has been integrated into the knowledge base etc, but when you create a new ticket or reply to an existing one it doesn't have the TinyMCE editor...

Is this a feature that will be added in the final release of V4? Or should I start re-developing my WYSIWYG addon for v3 to work in v4?

Dylan.

Urgency help

$
0
0
Hello.unfortunately when we are updating management department, we get into an error but wanted changes are selected.

Just when we click on the updating instead of "successfully updated" we see a notification that has been attached by this ticket.

Would you help me to solve my problem??

Urgency help

$
0
0
Hello.unfortunately when we are updating management department, we get into an error but wanted changes are selected.

Just when we click on the updating instead of "successfully updated" we see a notification that has been attached by this ticket.

Would you help me to solve my problem??

[​IMG]

LDAP/AD Integration seems to be lacking

$
0
0
Hello All,

We are a large company with about 300 staff and a ton of customers.
We are taking a serious look at Kayako but find that there is no native LDAP or AD integration with the product that is authored by Kayako themselves. Seems one has to use third party code via Loginshare and I don't see any recent activity for these modules (are they even being supported anymore?). Who is vetting this code from a security standpoint? Is Kayako testing this to ensure compatibility with their upgrade...

LDAP/AD Integration seems to be lacking

swuserprofiles and swcustomfields

$
0
0
Hi all,

I'm running a query against the Kayako database, and what i would like to do is retriving data stored in custom fields on user profile.

But what i'm not seeing is the relationship between a users profile. i.e userid 81 and the data stored in his/hers customs fields.

How does the database link stored data on custom fields up against a user profile ?

TL;DR: I want to be able to do "select * from swcustomfieldsvalue where userid = 81;" (i know this won't work, but it's what i'm trying...

swuserprofiles and swcustomfields

Newssubscription default set to Yes

$
0
0
Hi guys,

I am looking for help to modify a template. We would like to have the newssubscription set to Yes by default when users create their account.

I was told by Kayako Support that the following template should be modified: General > preferencesform
He said the following code should be changed:
Code:
"<td><input type="radio" name="newssubscription" value="1"<{if $_newsSubscription == true}> checked<{/if}> <{if $_newsSubscriptionEnabled == false}> disabled="disabled"<{/if}> />...
Newssubscription default set to Yes

4.70 upgrade issue

$
0
0
Hi,

get following error while upgrade to 4.70.0:

Code:
Fatal error: Call to a member function Get() on a non-object in /var/www/__swift/models/Settings/class.SWIFT_Settings.php on line 53
What could it be?

nginx rewrites?

$
0
0
Hey there, I was reading through http://forums.kayako.com/threads/seo-friendly-urls.24258/page-4 and thought it was kinda a shame no one had posted a nginx config (there was tons of Apache, and even one lighttpd).
I love nginx, and it would be a shame if I had to use Apache (or lighttpd) instead of it for rewrites.
I was thinking it through, and it seems like nginx would stumble at the point of not knowing the callback of the regex, for example, in lighttpd:...

nginx rewrites?

Staff updating ticket doesn't receive activity notice.

$
0
0
We recently upgraded skipping significant versions 4.30.649 to 4.73.2. We've noticed a significant email notification change.

When a staff user performs activity on a ticket through the web application they do not receive an email notification, but everyone else on the ticket does. Sometimes this can be good, because why do they need notification of activity they themselves did? However, some of our staff use that email as part of other workflows.

We have a notification rule that the owner...

Staff updating ticket doesn't receive activity notice.

Hidden ticket status

$
0
0
Hey all,

Is it possible to create a ticket status that is completely hidden from both customers and staff?

Say that all tickets that are marked with status "Hide" should only be seen in the database (or if possible by a superuser) but not from staff or customers.

Thanks.

How to display selected KB articles on homeindex?

$
0
0
To have multilingual NEWS articles on the Home page (homeindex) I thought of the following (workaround):

1. we already have our KB categorized so that the root categories are the languages (English, German, French, etc). Through a drop-down you can change the language/category. That's working fine!
2. creating a sub-category in each root category called "News"
3. creating localized news articles as KB articles

Now:
How to change the homeindex so that only the KB articles of this...

How to display selected KB articles on homeindex?

Gettings statistics with PHP API

$
0
0
I need to collect statistics using PHP API.

Need to display number of replied tickets per staff (but not number of replies) for selected period.

There are more than half a million tickets in the system.

What I have so far is:
1. Getting all the ticket IDs
PHP:
$tickets kyTicket::getAll(
  
kyDepartment::getAll()
  ->
filterByTitle(array('Dep1''Dep2''Dep3')) //I don't need all the departments so I filter by department
)->collectId();
2. Iterating through ticket IDs and getting all...

Gettings statistics with PHP API

Using Hooks in livechat

Kayako stops parsing replies at 5 underscores (_____)

$
0
0
Hi,

I think I've found a pretty strange bug. To reproduce:

1) Send a mail to Kayako (e.g. from Google Mail), with the following content:

A
_____
B

2) Open the ticket in Kayako. It looks as expected, A, B and the underscores are visible.

3) Answer something (e.g. "test") in Kayako, click Send.

4) In Google Mail, reply again with the same reply as listed above.

A
_____
B

5) Open the ticket in Kayako. The most recent reply only says "A", everything after that (underscores and rest) is...

Kayako stops parsing replies at 5 underscores (_____)

HTML Not Displayed Correctly

$
0
0
Hi,
Im wondering if it is just me or everyone that is getting this issue.

I am using the Kayako Mobile iOS app for iPad and it is very difficult to read what is going on as the emails come in and are processed in HTML format. So links are appearing like the below.
<a href="http://domainname.domain"
Is there any plans to resolve this in further releases ?

Thanks
Brad
Viewing all 12879 articles
Browse latest View live




Latest Images