Kayako logo

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 Rate Thread Display Modes
  (#1) Old
icewarp_brasil Offline
New Member
 
Posts: 12
Join Date: May 2007
(SWIFTFOUR-219) Automatic, timer based proactive chat - 16-01-2008, 10:01 AM

Would be nice to have a proactive chat like some systems offer, where it shows automatically a pop up window for using asking if he needs help...
   
Reply With Quote
  (#2) Old
craigbrass Offline
Senior Member
 
Posts: 6,755
Join Date: Jun 2005
Location: Cumbria, UK
16-01-2008, 10:25 AM

This is already a feature. Inside the Windows Application simply right click the user, click Proactive Chat then click Request Chat.


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

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#3) Old
icewarp_brasil Offline
New Member
 
Posts: 12
Join Date: May 2007
16-01-2008, 05:47 PM

Nice, but what I mean is a bit different. like Theplanet.com has for example. A pop up appears saying "Operator is available for chat. Do you want to chat?". It doenst force user like in kayako into a chat.
   
Reply With Quote
  (#4) Old
craigbrass Offline
Senior Member
 
Posts: 6,755
Join Date: Jun 2005
Location: Cumbria, UK
16-01-2008, 07:53 PM

Kayako has two options. Forced chat and Request chat. Request does as you said above.


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

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#5) Old
icewarp_brasil Offline
New Member
 
Posts: 12
Join Date: May 2007
17-01-2008, 12:15 PM

Hi,

It shows a pop up for the user asking if he wants to chat? But its not automatic, I have to click for that to happen no?

regards
   
Reply With Quote
  (#6) Old
craigbrass Offline
Senior Member
 
Posts: 6,755
Join Date: Jun 2005
Location: Cumbria, UK
17-01-2008, 12:36 PM

You have to request this. I don't think any of the current ones do it automatically. Would be a nice feature to have rules for when to ask the customer (like 5 mins of browsing, etc).

Hopefully one of the moderators will move this out of Already Implemented when they see it.


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

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#7) Old
icewarp_brasil Offline
New Member
 
Posts: 12
Join Date: May 2007
21-01-2008, 04:35 PM

Thanks. Yes, would be nice for it to be automatic, after x mins of accessing site.

Can I consider this FR added then?

Thanks
   
Reply With Quote
  (#8) Old
gafana Offline
New Member
 
Posts: 4
Join Date: Nov 2007
13-02-2008, 01:31 AM

Totally agree...it would be great for my landing page to have it auto-pop asking if they need help.

However, I have live support throughout the site. It will not make sense to auto-pop to already-existing users that are using my service...it will be needed for potentially new customers. However, if I have the same live support throughout the site, we need to be able to create rules or groups so that if I put tag X on my landing page and support pages, it will pop a proactive chat after N number of minutes. However, if I put tag Y on all the other pages, it will not load the pro-active chat.

Just needs to be some kind of rules for controlling which pages will have auto-pop and which will not.
   
Reply With Quote
  (#9) Old
craigbrass Offline
Senior Member
 
Posts: 6,755
Join Date: Jun 2005
Location: Cumbria, UK
13-02-2008, 08:37 AM

Yea, it should be rule based like "User has been viewing for 5 minutes", "user ip is not one of the following", etc.


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

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#10) Old
Carl Silver Offline
Member
 
Carl Silver's Avatar
 
Posts: 119
Join Date: May 2007
Location: UK
14-02-2008, 08:37 AM

Quote:
Originally Posted by craigbrass View Post
Yea, it should be rule based like "User has been viewing for 5 minutes", "user ip is not one of the following", etc.
+1 to that


Leapfrog AVIT Ltd - http://hosting.leapfrogavit.com
Shared Linux Hosting, Virtual Servers, Dedicated Servers, Domain Registration
MSN: carl.silver[AT]leapfrogavit[DOT]com
   
Reply With Quote
  (#11) Old
MarkIngles Offline
Member
 
Posts: 33
Join Date: Mar 2007
14-02-2008, 03:47 PM

I implemented this:

in modules/livesupport/visitor_htmlcode.php
I modified function elapsedTime()

Code:
var autoProactiveDisplayed = 0;
function elapsedTime()
{
        if (timer < 3600)
        {
                timer++;
                imagefetch++;

                if (imagefetch > <?php echo $_SWIFT["settings"]["livesupport_clientpagerefresh"]; ?>) {
                        imagefetch = 0;
                        doStatusLoop();
                        
                        <?
                        # added Mark Ingles 6/18/07
                        # automatically initiate chat after x minutes 
                        # if staff is online and in user is in /land directory
                        # timer=76 is about 1 min, 130~2min
                        # also added var autoProactiveDisplayed = 0; about 10 lines up
                        # the referer stays at the original referrer because this script is cached 1/18/07
                        # added window.location to compensate
                        if($_staffstatus == STATUS_ONLINE AND strpos($_SERVER['HTTP_REFERER'], '/land/') !== FALSE) {
                        echo '// ' . $_SERVER['HTTP_REFERER'];
                        ?>
                          
                        if(timer > 20 && isChatRunning == 0 && autoProactiveDisplayed == 0 && window.location.toString().indexOf('/
                                autoProactiveDisplayed = 1;
                                if(ie) {
                                        var proactivedivheight = (document.compatMode && document.compatMode != "BackCompat") ? doc
                                        document.getElementById('proactivechatdiv').style.top = proactivedivheight;
                                }
                                displayProactiveChatData();
                        }
                        <? } ?>
                }
                setTimeout("elapsedTime();", 1000);
        }
}

The rules above are
1. The visitor is in a subdirectory /land of my site (where all of my PPC landing pages are)
2. Someone is logged into the winapp to actually handle the chat
3. They've been on the page for more than about 20 seconds.

The timer variable isn't exact when I was testing.

That did it for me.

I hope this helps someone.
Mark Ingles

Last edited by Jamie Edwards; 14-02-2008 at 04:09 PM.
   
Reply With Quote
  (#12) Old
craigbrass Offline
Senior Member
 
Posts: 6,755
Join Date: Jun 2005
Location: Cumbria, UK
14-02-2008, 04:05 PM

Ooo, nice one Mark. This will certainly help people who want this functionality right away.


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

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#13) Old
dataone Offline
New Member
 
Posts: 25
Join Date: Feb 2007
Location: Chicago
20-02-2008, 06:30 PM

This is very cool

How can I control which department will handle the chat?

I want proactive chat for sales dept but not for support, any idea?
   
Reply With Quote
  (#14) Old
Carl Silver Offline
Member
 
Carl Silver's Avatar
 
Posts: 119
Join Date: May 2007
Location: UK
21-02-2008, 11:04 AM

nice, thanks


Leapfrog AVIT Ltd - http://hosting.leapfrogavit.com
Shared Linux Hosting, Virtual Servers, Dedicated Servers, Domain Registration
MSN: carl.silver[AT]leapfrogavit[DOT]com
   
Reply With Quote
  (#15) Old
prodomein Offline
New Member
 
Posts: 2
Join Date: Mar 2006
03-04-2009, 11:32 AM

Is this already possible?

Quote:
Originally Posted by dataone View Post
This is very cool

How can I control which department will handle the chat?

I want proactive chat for sales dept but not for support, any idea?
   
Reply With Quote
Reply

Tags
automatic, based, chat, proactive, timer

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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
Live chat -> Automatic proactive chat Triexa Feature Requests 5 19-03-2009 11:34 AM



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


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