LiveChat – WP live chat plugin for WordPress - Version 1.0.0

Version Description

  • First plugin version
Download this release

Release Info

Developer livechat
Plugin Icon 128x128 LiveChat – WP live chat plugin for WordPress
Version 1.0.0
Comparing to
See all releases

Version 1.0.0

livechat.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Live Chat Software for Wordpress
4
+ Plugin URI: http://www.livechatinc.com
5
+ Description: Description: Live chat software for live help, online sales and customer support. Plugin allows to quickly install the live chat button and monitoring code on any WordPress website.
6
+ Author: LIVECHAT Software
7
+ Version: 1.0.0
8
+ Author URI: http://www.livechatinc.com
9
+ */
10
+
11
+ function sampleLIVECHAT($licenceNumber, $groups, $language) {
12
+ ?>
13
+ <!-- BEGIN LIVECHAT button tag. See also www.livechatinc.com -->
14
+ <div style="text-align:center"><a id="LivechatButton" href="http://chat.livechatinc.net/licence/<?php echo $licenceNumber?>/open_chat.cgi?groups=<?php echo $groups?>&amp;lang=<?php echo $language?>" target="chat_<?php echo $licenceNumber?>" onclick="window.open('http://chat.livechatinc.net/licence/<?php echo $licenceNumber?>/open_chat.cgi?groups=<?php echo $groups?>'+'&amp;lang=<?php echo $language?>&amp;dc='+escape(document.cookie+';l='+document.location+';r='+document.referer+';s='+typeof lc_session),'Czat_<?php echo $licenceNumber?>','width=529,height=520,resizable=yes,scrollbars=no,status=1');return false;"></a><script type='text/javascript'>var img=new Image();img.style.border='0';img.src=(("https:" == document.location.protocol) ? "https://" : "http://")+'chat.livechatinc.net/licence/<?php echo $licenceNumber?>/button.cgi?lang=<?php echo $language?>&groups=<?php echo $groups?>'+'&d='+((new Date()).getTime());var _livechat_button=document.getElementById('LivechatButton');if(_livechat_button!=null){_livechat_button.appendChild(img);}</script><br><span style="font-family:Tahoma,sans-serif;font-size:10px;color:#333"><a href="http://www.livechatinc.com" style="font-size:10px;text-decoration:none" target="_blank">Live Chat</a> <span style="color: #475780">Software for Business</span></span></div>
15
+ <!-- END LIVECHAT button tag. See also www.livechatinc.com -->
16
+ <!-- BEGIN LIVECHAT track tag. See also www.livechatinc.com -->
17
+ <script type="text/javascript">
18
+ var livechat_params = '';
19
+ var livechat_host = (("https:" == document.location.protocol) ? "https://" : "http://");
20
+ livechat_params = ((livechat_params == '') ? '' : '&amp;params='+encodeURIComponent(livechat_params));
21
+ document.write(unescape("%3Cscript src='") + livechat_host + "chat.livechatinc.net/licence/<?php echo $licenceNumber?>/script.cgi?lang=<?php echo $language?>&amp;groups=<?php echo $groups?>" + livechat_params + unescape("' type='text/javascript'%3E%3C/script%3E"));
22
+ </script>
23
+ <!-- END LIVECHAT track tag. See also www.livechatinc.com -->
24
+ <?php
25
+ }
26
+
27
+ function widget_myLIVECHAT($args) {
28
+ extract($args);
29
+
30
+ $options = get_option("widget_myLIVECHAT");
31
+ if (!is_array( $options )) {
32
+ $options = array(
33
+ 'licence_number' => '',
34
+ 'language' => 'en',
35
+ 'groups' => 0
36
+ );
37
+ }
38
+ //Our Widget Content
39
+ sampleLIVECHAT($options['licence_number'], $options['groups'], $options['language']);
40
+ }
41
+
42
+ function myLIVECHAT_control() {
43
+ $options = get_option("widget_myLIVECHAT");
44
+ if (!is_array( $options )) {
45
+ $options = array(
46
+ 'licence_number' => '',
47
+ 'language' => 'en',
48
+ 'groups' => 0
49
+ );
50
+ }
51
+
52
+ if ($options['groups'] == '') { $options['groups'] = "0"; }
53
+ if ($options['language'] == '') { $options['language'] = "en"; }
54
+ if ($_POST['myLIVECHAT-Submit']) {
55
+ $options['licence_number'] = htmlspecialchars($_POST['myLIVECHAT-licence_number']);
56
+ $options['language'] = htmlspecialchars($_POST['myLIVECHAT-language']);
57
+ $options['groups'] = htmlspecialchars($_POST['myLIVECHAT-groups']);
58
+ update_option("widget_myLIVECHAT", $options);
59
+ }
60
+
61
+ ?>
62
+ <p>
63
+ <label for="myLIVECHAT-licence_number">Enter your licence number: </label><br />
64
+ <input type="text" id="myLIVECHAT-licence_number" name="myLIVECHAT-licence_number" value="<?php echo $options['licence_number'];?>" />
65
+ </p>
66
+ <p>
67
+ <label for="myLIVECHAT-language">Button language (default is EN): </label><br />
68
+ <input type="text" id="myLIVECHAT-language" name="myLIVECHAT-language" value="<?php echo $options['language'];?>" />
69
+ </p>
70
+ <p>
71
+ <label for="myLIVECHAT-groups">Groups (default is 0): </label><br />
72
+ <input type="text" id="myLIVECHAT-groups" name="myLIVECHAT-groups" value="<?php echo $options['groups'];?>" />
73
+ </p>
74
+ <input type="hidden" id="myLIVECHAT-Submit" name="myLIVECHAT-Submit" value="1" />
75
+ </p>
76
+ <?php
77
+ }
78
+
79
+ function myLIVECHAT_init() {
80
+ wp_register_sidebar_widget( 'WIDGETID', 'LIVECHAT Contact Center', 'widget_myLIVECHAT', array('description' => __('Live chat software for live help, online sales and customer support. Plugin allows to quickly install the live chat button and monitoring code on any WordPress website.')) );
81
+ wp_register_widget_control( 'WIDGETID', 'LIVECHAT Contact Center', 'myLIVECHAT_control');
82
+ }
83
+ add_action("plugins_loaded", "myLIVECHAT_init");
84
+ ?>
readme.txt ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Live Chat Software for Wordpress ===
2
+ Contributors: LIVECHAT Software
3
+ Tags: live support, live chat, live chat software, online support, customer help, customer support, livechat, help desk, helpdesk, live support, customer service, plugin
4
+ Stable tag: trunk
5
+
6
+ This plugin integrates your Wordpress with LIVECHAT Contact Center - an application for online customer service and support.
7
+
8
+ == Description ==
9
+
10
+ LIVECHAT Contact Center is a fast and intuitive live chat software to enable your sales representatives contact customers on the website. Help online visitors find what they need before they leave your site.
11
+
12
+ * Increase sales conversion rate and customer satisfaction level.
13
+ * Allow customers to chat live with the sales person.
14
+ * Increase number of successful transactions.
15
+ * Secure and reliable communication channel.
16
+
17
+ = Web communicator =
18
+ Easy to customize and rebrand chat window. Out-of-the-box chat window templates.
19
+
20
+ = Traffic monitoring =
21
+ Track visitors in real time. Invite them to chat if they abandon an order or shopping cart.
22
+
23
+ = Analytics & Reporting =
24
+ Generate reports for each agent with the number of chats, invitations or time spent with the customer.
25
+
26
+ = Multiple languages support =
27
+
28
+ LIVECHAT Contact Center works with:
29
+
30
+ * Chinese
31
+ * Český
32
+ * Deutsch
33
+ * English
34
+ * Italiano
35
+ * Polski
36
+ * Română
37
+ * Русский Язык
38
+ * Svenska
39
+ * Slovenský
40
+
41
+ = Compatible with all browsers =
42
+
43
+ * Internet Explorer (even with IE 6)
44
+ * Firefox
45
+ * Google Chrome
46
+ * Opera
47
+ * Safari
48
+ * iPhone
49
+
50
+ = Features list =
51
+
52
+ *Agent application:*
53
+
54
+ * Supervise chats held by other agents
55
+ * Request and manage your customer’s desktop with Remote Desktop functionality
56
+ * Proactively invite your customers to chat with both Standard and Personal Invitations
57
+ * Whisper to other agents and help them with sales process
58
+ * Browse history of previous chats with particular customer
59
+ * Transfer the customer to another agent
60
+ * Organise conference and invite other available agents to chat
61
+ * Get notifications about incoming chats and conferences
62
+ * See your customers’ details, including current page and geolocalization
63
+ * Talk with unlimited customers at a time
64
+ * Enable customers queue and start chats on your own with specific clients
65
+ * Ban intrusive visitors from chatting
66
+ * Spell check in real-time with suggestions and custom dictionaries support
67
+
68
+ *Customer web application:*
69
+
70
+ * Chat using your desktop browser or mobile device
71
+ * Know when an agent replies thanks to thetyping indicator
72
+ * Request a callback from an agent
73
+ * Print the chat log
74
+ * Send the chat log to your e-mail address
75
+ * Save the chat log to your local drive
76
+ * Assess an agent and fill the Post-chat Survey
77
+ * Leave a message when all agents are offline
78
+ * Be notified about agent’s reply with a sound alert
79
+
80
+ *Website monitoring:*
81
+
82
+ * Monitor your website visitors in real-time
83
+ * See your visitors’ status: Online, Invited, Chatting, Offline and more
84
+ * Analyse referrers – pages your customers came from
85
+ * Monitor keywords your visitors entered in search engines
86
+ * Check users’ visit history
87
+ * Retrieve customer’s browser, language, accepted/refused invites and more
88
+ * Get notifications about your new visitors
89
+ * Install monitoring code on as many websites as you want
90
+
91
+ *Customization:*
92
+
93
+ * Choose one of available Chat Window templates
94
+ * Brand your chat window with your company logo
95
+ * Play with custom color themes generator
96
+ * Browse Chat Buttons, Standard Invitations and Personal Invitations galleries
97
+ * Upload custom Chat Buttons, Standard Invitations and Personal Invitations graphics
98
+ * Easily customize your Pre-chat and Post-chat Surveys
99
+ * Share common Canned Responses, URL Addresses and Aliases with other agents
100
+ * Integrate your Live Chat software with CRM system
101
+ * Install new features with Add-ons Manager
102
+
103
+ *Statistics*:
104
+
105
+ * Pre-Chat and Post-Chat Surveys
106
+ * Your agents availability
107
+ * Average Talk Time, Invites and Chats Traffic Density
108
+ * Average Speed of Answer, Average Queue Waiting time
109
+ * Google Analytics integration
110
+
111
+ == Installation ==
112
+
113
+ 1. Upload `livechat.php` to the `/wp-content/plugins/` directory
114
+ 2. Activate the plugin through the 'Plugins' menu in WordPress
115
+ 3. Sign up to create your new live chat account: https://www.livechatinc.com/en/signup/
116
+ 4. Put your license number in your plugin settings (you will find it in live chat Dashboard).
117
+ 5. It works!
118
+
119
+ == Frequently Asked Questions ==
120
+
121
+ = All the plans presented at your website are monthly ones. Do you offer annual subscriptions? If yes, are there any discounts involved? =
122
+
123
+ Yes, you can pay up to one year in advance and save up to 20%.
124
+
125
+ = My subscription expired. What do I do to renew it? =
126
+
127
+ Go to online store, select the product and most suitable plan, log in using your account details and finish your order.
128
+
129
+ = How can I buy additional operators to my existing license? =
130
+
131
+ Visit our online online store, select your product and current plan, log in using your account details and finish your order.
132
+
133
+ = Do I get all features with the basic version? =
134
+
135
+ Yes, we provide all features in every plan we offer. The only limitation is the number of accounts and subscription period.
136
+
137
+ = We have a privacy policy in our company. What version do you recommend for the highest safety and communication confidentiality? =
138
+
139
+ You should read more about the Enterprise edition of our product.
140
+
141
+ = Do you offer a solution that I could host myself? =
142
+
143
+ Yes, we do. Please read more about the Enterprise edition of our product.
144
+
145
+ = What are the benefits of having your Enterprise version? =
146
+
147
+ With Enterprise version of our software you get full control over the application. You can deploy the software on the dedicated server and integrate the service with other systems in your company. Secure and control you data (chat history, activity reports, etc.) according to your policy.
148
+
149
+ = What are the server requirements for Enterprise version? =
150
+
151
+ The required server configuration includes just a dedicated computer with Pentium IV 3GHz processor and 2GB RAM. More specific system requirements are listed here.
152
+
153
+ = How long does it take and how is the Enterprise version implemented? =
154
+
155
+ Enterprise version requires remote installation and setup of our software on customer’s hardware. Regular implementations take up to one day – including preparing proper environment, actual implementation and tests.
156
+
157
+ = What technology is your software developed in? =
158
+
159
+ Web communicator is a JavaScript application. Server side software is developed in native C++. Agent application is developed in Visual C++. Read more about the technology here.
160
+
161
+ = Where can we find references from your clients? =
162
+
163
+ Please visit our Customers section for case studies and recommendation letters from our customers.
164
+
165
+ = What uptime can you guarantee with your hosted solution? =
166
+
167
+ Our uptime is 99,9% guaranteed. We offer the service since 2002.
168
+
169
+ = What payment options do I have? Do you accept checks? =
170
+
171
+ We accept credit cards and Paypal payments.
172
+
173
+ = We already have a live chat service at our website but we are looking for a cheaper solution. Can you offer us competitive prices? =
174
+
175
+ Of course we can always work on a better deal. Just click on the live chat button on the top of the page and let our agents know about your needs.
176
+
177
+ = How to put live chat button on my website? =
178
+
179
+ If you are logged in the application, click on the Control Panel button. Go to Settings -> Chat button. Copy the button code and paste it into the source code of your website.
180
+
181
+ = Do I have to put both monitoring code and button code on my website? =
182
+
183
+ In most of the cases – yes, you should. Monitoring code is responsible for real-time traffic monitoring visible in the application. Chat button code allows customers to ask for help anytime they want.
184
+
185
+ = How to change my picture? =
186
+
187
+ Click on the application logo in top left corner of the screen and select Edit Your Profile.
188
+
189
+ = How to change live chat button? =
190
+
191
+ Go to Control Panel and Settings > Chat button section. There you can upload your own button image or select one from the buttons gallery.
192
+
193
+ = What is my password? =
194
+
195
+ We do not know your password, because we do not keep it. If you forgot your password, you can ask for a password reminder in the Control panel.
196
+
197
+ = What is the desktop sharing add-on? =
198
+
199
+ This feature allows agents to take over the customer desktop or to present their desktop to the customer.
200
+
201
+ = What is the Skype add-on? =
202
+
203
+ This add-on allows agents to use Skype account to call back the customers in the CallBack mode.
204
+
205
+ == Screenshots ==
206
+
207
+ 1. Website integration: Put the chat button and monitoring code to successfully integrate live chat with your website. Let your sales force get in touch with your customers and identify their needs.
208
+ 2. Chat window: A direct chat with an agent using the web communicator.
209
+ 3. Agent window
210
+ 4. Website monitoring: Track your visitors in real time and see what pages they are watching now. Invite them to chat in response to your marketing campaigns and initiatives.
211
+ 5. Dashboard: Be up-to-date with your company activity. Dashboard gives you many information presented in concise and pleasant way.
212
+ 6. One of the chat buttons available in our buttons gallery
213
+ 7. One of the chat invitations available in our invitations gallery
214
+ 8. One of the personal invitations available in our invitations gallery
215
+
216
+ == Changelog ==
217
+
218
+ = 1.0.0 =
219
+ * First plugin version
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file
screenshot-4.png ADDED
Binary file
screenshot-5.png ADDED
Binary file
screenshot-6.png ADDED
Binary file
screenshot-7.png ADDED
Binary file
screenshot-8.png ADDED
Binary file