Version Description
- Updated support and video URLs
Download this release
Release Info
Developer | zendesk_official |
Plugin | Zendesk Chat |
Version | 1.4.5 |
Comparing to | |
See all releases |
Code changes from version 1.4.4 to 1.4.5
- includes/class-admin.php +4 -4
- includes/class-linked-view.php +3 -3
- includes/class-login.php +1 -1
- includes/views/login-form.php +1 -1
- languages/zopim.pot +4 -4
- readme.txt +24 -21
- zopim.php +7 -7
includes/class-admin.php
CHANGED
@@ -36,7 +36,7 @@ class Zopim_Admin
|
|
36 |
public function zopim_create_menu()
|
37 |
{
|
38 |
//create new top-level menu
|
39 |
-
add_menu_page( __( 'Account Configuration', 'zopim-live-chat' ), __( '
|
40 |
}
|
41 |
|
42 |
|
@@ -86,7 +86,7 @@ class Zopim_Admin
|
|
86 |
<div class="postbox">
|
87 |
<h3 class="hndle"><span>' . __( 'Account no longer linked!', 'zopim-live-chat' ) . '</span></h3>
|
88 |
<div class="zopim-auth-error-message">' .
|
89 |
-
__( 'We could not verify your
|
90 |
. '</div>
|
91 |
</div>
|
92 |
</div>';
|
@@ -108,7 +108,7 @@ class Zopim_Admin
|
|
108 |
}
|
109 |
|
110 |
/**
|
111 |
-
* Makes a POST request to the
|
112 |
*
|
113 |
* @param $url The full url endpoint to access.
|
114 |
* @param $_data The data to pass to the request.
|
@@ -131,7 +131,7 @@ class Zopim_Admin
|
|
131 |
}
|
132 |
|
133 |
/**
|
134 |
-
* Gets the current user's
|
135 |
*
|
136 |
* @return array|mixed
|
137 |
*/
|
36 |
public function zopim_create_menu()
|
37 |
{
|
38 |
//create new top-level menu
|
39 |
+
add_menu_page( __( 'Account Configuration', 'zopim-live-chat' ), __( 'Zendesk Chat', 'zopim-live-chat' ), 'access_zopim', 'zopim_account_config', array( &$this, 'zopim_account_config' ), ZOPIM_SMALL_LOGO );
|
40 |
}
|
41 |
|
42 |
|
86 |
<div class="postbox">
|
87 |
<h3 class="hndle"><span>' . __( 'Account no longer linked!', 'zopim-live-chat' ) . '</span></h3>
|
88 |
<div class="zopim-auth-error-message">' .
|
89 |
+
__( 'We could not verify your Zendesk Chat account. Please check your password and try again.', 'zopim-live-chat' )
|
90 |
. '</div>
|
91 |
</div>
|
92 |
</div>';
|
108 |
}
|
109 |
|
110 |
/**
|
111 |
+
* Makes a POST request to the Zendesk Chat API.
|
112 |
*
|
113 |
* @param $url The full url endpoint to access.
|
114 |
* @param $_data The data to pass to the request.
|
131 |
}
|
132 |
|
133 |
/**
|
134 |
+
* Gets the current user's Zendesk Chat account details.
|
135 |
*
|
136 |
* @return array|mixed
|
137 |
*/
|
includes/class-linked-view.php
CHANGED
@@ -13,7 +13,7 @@ class Zopim_Linked_View extends Zopim_Base_View
|
|
13 |
'dashboard-access-label' => __( 'To start using Zendesk chat, launch our dashboard for access to all features, including widget customization!', 'zopim-live-chat' ),
|
14 |
'launch-dashboard' => __( 'Launch Dashboard', 'zopim-live-chat' ),
|
15 |
'open-tab-label' => __( 'This will open up a new browser tab', 'zopim-live-chat' ),
|
16 |
-
'textarea-label' => __( 'Optional code for customization with
|
17 |
'page-header' => __( 'Set up your Zendesk Chat Account', 'zopim-live-chat' ),
|
18 |
);
|
19 |
}
|
@@ -37,9 +37,9 @@ class Zopim_Linked_View extends Zopim_Base_View
|
|
37 |
}
|
38 |
|
39 |
/**
|
40 |
-
* Renders the
|
41 |
*
|
42 |
-
* @param object Account details retrieved from the
|
43 |
*/
|
44 |
public function display_linked_view( $accountDetails )
|
45 |
{
|
13 |
'dashboard-access-label' => __( 'To start using Zendesk chat, launch our dashboard for access to all features, including widget customization!', 'zopim-live-chat' ),
|
14 |
'launch-dashboard' => __( 'Launch Dashboard', 'zopim-live-chat' ),
|
15 |
'open-tab-label' => __( 'This will open up a new browser tab', 'zopim-live-chat' ),
|
16 |
+
'textarea-label' => __( 'Optional code for customization with Zendesk Chat API:', 'zopim-live-chat' ),
|
17 |
'page-header' => __( 'Set up your Zendesk Chat Account', 'zopim-live-chat' ),
|
18 |
);
|
19 |
}
|
37 |
}
|
38 |
|
39 |
/**
|
40 |
+
* Renders the Zendesk Chat update options form.
|
41 |
*
|
42 |
+
* @param object Account details retrieved from the Zendesk Chat API
|
43 |
*/
|
44 |
public function display_linked_view( $accountDetails )
|
45 |
{
|
includes/class-login.php
CHANGED
@@ -4,7 +4,7 @@ class Zopim_Login extends Zopim_Base_View {
|
|
4 |
protected function set_messages() {
|
5 |
$this->_messages = array(
|
6 |
'login-fail' => __( 'Could not log in to Zendesk Chat. Please check your login details.', 'zopim-live-chat' ),
|
7 |
-
'wp-login-error' => __( 'Could not log in to Zendesk Chat. We were unable to contact
|
8 |
'zopim-live-chat' ),
|
9 |
'setup-your-account' => __( 'Set up your Zendesk Chat Account', 'zopim-live-chat' ),
|
10 |
'congratulations' => __( 'Congratulations on successfully installing the Zendesk Chat WordPress plugin!',
|
4 |
protected function set_messages() {
|
5 |
$this->_messages = array(
|
6 |
'login-fail' => __( 'Could not log in to Zendesk Chat. Please check your login details.', 'zopim-live-chat' ),
|
7 |
+
'wp-login-error' => __( 'Could not log in to Zendesk Chat. We were unable to contact Zendesk Chat servers. Please check with your server administrator to ensure that <a href="http://www.php.net/manual/en/book.curl.php">PHP Curl</a> is installed and permissions are set correctly',
|
8 |
'zopim-live-chat' ),
|
9 |
'setup-your-account' => __( 'Set up your Zendesk Chat Account', 'zopim-live-chat' ),
|
10 |
'congratulations' => __( 'Congratulations on successfully installing the Zendesk Chat WordPress plugin!',
|
includes/views/login-form.php
CHANGED
@@ -40,7 +40,7 @@ $notices->do_notices( 'before_login' );
|
|
40 |
<p class="submit">
|
41 |
<input id="linkup" type="submit" onclick="animateButton()" class="button-primary"
|
42 |
value="<?php echo $messages[ 'link-up-button' ] ?>"/>
|
43 |
-
<?php _e( 'Don\'t have a
|
44 |
href="<?php echo ZOPIM_SIGNUP_REDIRECT_URL; ?>" target="_blank"
|
45 |
data-popup="true"><?php echo $messages[ 'sign-up-link' ]; ?></a>.
|
46 |
</p>
|
40 |
<p class="submit">
|
41 |
<input id="linkup" type="submit" onclick="animateButton()" class="button-primary"
|
42 |
value="<?php echo $messages[ 'link-up-button' ] ?>"/>
|
43 |
+
<?php _e( 'Don\'t have a Zendesk Chat account?', 'zopim-live-chat' ); ?> <a
|
44 |
href="<?php echo ZOPIM_SIGNUP_REDIRECT_URL; ?>" target="_blank"
|
45 |
data-popup="true"><?php echo $messages[ 'sign-up-link' ]; ?></a>.
|
46 |
</p>
|
languages/zopim.pot
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
# Copyright (C) 2015 Zendesk Chat Widget
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Zendesk Chat Widget 1.3.6\n"
|
@@ -48,7 +48,7 @@ msgstr ""
|
|
48 |
|
49 |
#: accountconfig.php:83
|
50 |
msgid ""
|
51 |
-
"We could not verify your
|
52 |
"again."
|
53 |
msgstr ""
|
54 |
|
@@ -121,7 +121,7 @@ msgid "Link Up"
|
|
121 |
msgstr ""
|
122 |
|
123 |
#: accountconfig.php:169
|
124 |
-
msgid "Don't have a
|
125 |
msgstr ""
|
126 |
|
127 |
#: accountconfig.php:169
|
@@ -144,7 +144,7 @@ msgstr ""
|
|
144 |
#. Plugin URI of the plugin/theme
|
145 |
#. #-#-#-#-# zopim.pot (Zendesk Chat Widget 1.3.6) #-#-#-#-#
|
146 |
#. Author URI of the plugin/theme
|
147 |
-
msgid "http://www.
|
148 |
msgstr ""
|
149 |
|
150 |
#. Description of the plugin/theme
|
1 |
# Copyright (C) 2015 Zendesk Chat Widget
|
2 |
+
# This file is distributed under the same license as the Zendesk Chat Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Zendesk Chat Widget 1.3.6\n"
|
48 |
|
49 |
#: accountconfig.php:83
|
50 |
msgid ""
|
51 |
+
"We could not verify your Zendesk Chat account. Please check your password and try "
|
52 |
"again."
|
53 |
msgstr ""
|
54 |
|
121 |
msgstr ""
|
122 |
|
123 |
#: accountconfig.php:169
|
124 |
+
msgid "Don't have a Zendesk Chat account?"
|
125 |
msgstr ""
|
126 |
|
127 |
#: accountconfig.php:169
|
144 |
#. Plugin URI of the plugin/theme
|
145 |
#. #-#-#-#-# zopim.pot (Zendesk Chat Widget 1.3.6) #-#-#-#-#
|
146 |
#. Author URI of the plugin/theme
|
147 |
+
msgid "http://www.zendesk.com/chat?iref=wp_plugin"
|
148 |
msgstr ""
|
149 |
|
150 |
#. Description of the plugin/theme
|
readme.txt
CHANGED
@@ -3,19 +3,19 @@ Contributors: zendesk_official
|
|
3 |
Tags: chat, chat online, contact plugin, contact us, customer support, free chat, chat software, IM chat, live chat, live chat inc, live chat services, live chat software, live chatting, live help, live support, live web chat, livechat, live help, live support, olark, online chat, online support, php live chat, snapengage, support software, website chat, wordpress chat, wordpress live chat, wordpress live chat plugin, Zopim, zendesk, Zopim live chat, banckle, clickdesk, click desk
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 4.4
|
6 |
-
Stable tag: 1.4.
|
7 |
|
8 |
-
Zendesk Chat lets you monitor and chat with visitors surfing your store in real-time. Impress them personally and ease them into their purchase.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
Did you know that 83% of consumers need some kind of customer support when making an online purchase? And 45% of customers abandon an online transaction if their questions or concerns are not addressed quickly.
|
13 |
|
14 |
-
Businesses that interact with potential customers online are better placed to build a connection and increase their revenues. The
|
15 |
|
16 |
-
[youtube https://www.youtube.com/watch?v=
|
17 |
|
18 |
-
With
|
19 |
|
20 |
**Key Features**
|
21 |
|
@@ -23,12 +23,12 @@ With Zopim Live Chat, visitors to your website will be able to chat directly wit
|
|
23 |
* **Proactive Chat:** Rather than chatting with every single person yourself, you can increase the chances of high value engagement (and more sales) by using Triggers to automatically reach every visitor
|
24 |
* **Advanced Analytics:** Our analytics dashboard lets you monitor visitor flow, usage patterns, and lets you jump in whenever a customer might need help
|
25 |
|
26 |
-
**What makes
|
27 |
|
28 |
* We’re the most popular live chat provider in the world - loved by over 150,000 businesses
|
29 |
* A simple and highly customizable chat widget to complement your website and taste
|
30 |
* User friendly dashboard lets you monitor visitor activity and manage chats
|
31 |
-
* 24 hour live chat support from our trained experts on any weekday (visit
|
32 |
* Available in over 40 languages
|
33 |
|
34 |
**Some Geeky Facts**
|
@@ -39,15 +39,18 @@ With Zopim Live Chat, visitors to your website will be able to chat directly wit
|
|
39 |
* iPhone, Android, and BlackBerry apps
|
40 |
* Integrates seamlessly with UserVoice, Salesforce, Highrise, Batchbook, Zendesk, vTiger and many more.
|
41 |
|
42 |
-
Should you need any assistance, feel free to chat with our customer advocates on www.
|
43 |
|
44 |
-
What are you waiting for? Download
|
45 |
|
46 |
-
**See languages available, lovingly translated by
|
47 |
|
48 |
* Arabic | Bulgarian | Chinese | Croatian | Czech | Danish | Dutch; Flemish | Estonian | Faroese | Finnish | French | Georgian | German | Greek | Hebrew | Hungarian | Icelandic | Indonesian | Italian | Japanese | Korean | Kurdish | Latvian | Lithuanian | Macedonian | Malay | Norwegian Bokmal | Persian | Polish | Portuguese | Romanian | Russian | Serbian | Slovak | Slovenian | Spanish; Castilian | Swedish | Thai | Turkish | Ukranian | Urdu | Vietnamese
|
49 |
|
50 |
== Changelog ==
|
|
|
|
|
|
|
51 |
= 1.4.4 =
|
52 |
* Rebranding strings to Zendesk Chat
|
53 |
|
@@ -157,7 +160,7 @@ to give roles the 'access_zopim' capability.
|
|
157 |
* Signup process is now linked to zopim.com as per Wordpress guidelines.
|
158 |
|
159 |
= 1.1.3 =
|
160 |
-
* Update
|
161 |
* Add option to override dashboard settings for chat bubble text
|
162 |
|
163 |
= 1.1.2 =
|
@@ -169,7 +172,7 @@ to give roles the 'access_zopim' capability.
|
|
169 |
= 1.1.0 =
|
170 |
* Maintenance update: Greeting messages are now saved properly.
|
171 |
* Add more language options in customization page.
|
172 |
-
* Using new
|
173 |
|
174 |
= 1.0.7 =
|
175 |
* Maintenance update: Remove phased out "middle left", "middle right" positions
|
@@ -216,7 +219,7 @@ to give roles the 'access_zopim' capability.
|
|
216 |
|
217 |
= 0.3.0 =
|
218 |
|
219 |
-
* Feature: Connect to
|
220 |
* Feature: You can experiment with customizing the widget even without an account.
|
221 |
* Feature: Change the automatic messages displayed on the widget when it first loads, and depending on your online status.
|
222 |
* Feature: Customize the language of the widget.
|
@@ -230,7 +233,7 @@ to give roles the 'access_zopim' capability.
|
|
230 |
|
231 |
= 0.1.0 =
|
232 |
|
233 |
-
* Feature: Add the
|
234 |
* Feature: Customize look and feel of the widget, including themes and color!
|
235 |
* Feature: Use wordpress user information to populate visitor data in the plugin.
|
236 |
|
@@ -246,14 +249,14 @@ to give roles the 'access_zopim' capability.
|
|
246 |
|
247 |
= Do I have to install any software on my server to get this working? =
|
248 |
|
249 |
-
Not at all!
|
250 |
|
251 |
= Which web browsers work best with this plugin =
|
252 |
|
253 |
-
Though designed to work on most browsers,
|
254 |
|
255 |
-
= I managed to install the plugin but cannot link up to
|
256 |
-
The plugin tries to link up with
|
257 |
|
258 |
Alternatively, you can also manually include the script in the footer file ("wp-content/themes/default/footer.php" in your wordpress installation).
|
259 |
|
@@ -263,11 +266,11 @@ The plugin comes with a free plan specially tailored for Wordpress users. Power
|
|
263 |
|
264 |
= How can I chat with more visitors at the same time? =
|
265 |
|
266 |
-
You can easily do so by upgrading to a better plan. To find out more about the plans and features we offer, please visit https://www.
|
267 |
|
268 |
= Its just not working for me! HELP! =
|
269 |
|
270 |
-
Dont worry!! We are happy to assist! Just come on down to our site at
|
271 |
|
272 |
== Usage ==
|
273 |
|
@@ -282,6 +285,6 @@ After enabling the plug in, head on to the widget customization page to change s
|
|
282 |
Step-by-step Guide:
|
283 |
|
284 |
* Install plugin from WordPress directory and activate it.
|
285 |
-
* Under
|
286 |
* Customize the chat widget to your preference.
|
287 |
* Finally, make full use of our intuitive Dashboard to manage your chat widget.
|
3 |
Tags: chat, chat online, contact plugin, contact us, customer support, free chat, chat software, IM chat, live chat, live chat inc, live chat services, live chat software, live chatting, live help, live support, live web chat, livechat, live help, live support, olark, online chat, online support, php live chat, snapengage, support software, website chat, wordpress chat, wordpress live chat, wordpress live chat plugin, Zopim, zendesk, Zopim live chat, banckle, clickdesk, click desk
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 4.4
|
6 |
+
Stable tag: 1.4.5
|
7 |
|
8 |
+
Zendesk Chat (previously Zopim) lets you monitor and chat with visitors surfing your store in real-time. Impress them personally and ease them into their purchase.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
Did you know that 83% of consumers need some kind of customer support when making an online purchase? And 45% of customers abandon an online transaction if their questions or concerns are not addressed quickly.
|
13 |
|
14 |
+
Businesses that interact with potential customers online are better placed to build a connection and increase their revenues. The Zendesk Chat app will let you answer your customer’s questions in real time and ease them into a purchase.
|
15 |
|
16 |
+
[youtube https://www.youtube.com/watch?v=50s13fKKhGo]
|
17 |
|
18 |
+
With Zendesk Chat, visitors to your website will be able to chat directly with you through the widget and you can manage multiple conversations through the online Dashboard.
|
19 |
|
20 |
**Key Features**
|
21 |
|
23 |
* **Proactive Chat:** Rather than chatting with every single person yourself, you can increase the chances of high value engagement (and more sales) by using Triggers to automatically reach every visitor
|
24 |
* **Advanced Analytics:** Our analytics dashboard lets you monitor visitor flow, usage patterns, and lets you jump in whenever a customer might need help
|
25 |
|
26 |
+
**What makes Zendesk Chat the best choice for live chat?**
|
27 |
|
28 |
* We’re the most popular live chat provider in the world - loved by over 150,000 businesses
|
29 |
* A simple and highly customizable chat widget to complement your website and taste
|
30 |
* User friendly dashboard lets you monitor visitor activity and manage chats
|
31 |
+
* 24 hour live chat support from our trained experts on any weekday (visit www.zendesk.com/chat)
|
32 |
* Available in over 40 languages
|
33 |
|
34 |
**Some Geeky Facts**
|
39 |
* iPhone, Android, and BlackBerry apps
|
40 |
* Integrates seamlessly with UserVoice, Salesforce, Highrise, Batchbook, Zendesk, vTiger and many more.
|
41 |
|
42 |
+
Should you need any assistance, feel free to chat with our customer advocates on https://www.zendesk.com/chat or email us at chat@zendesk.com
|
43 |
|
44 |
+
What are you waiting for? Download Zendesk Chat plugin now and <a href="https://account.zopim.com/?aref=MjUxMjY4:1TeORR:9SP1e-iPTuAVXROJA6UU5seC8x4&visit_id=6ffe00ec3cfc11e2b5ab22000a1db8fa&utm_source=wpdirectory&utm_medium=link&utm_campaign=wp%2Bsignup#signup">sign up here</a> for a free account!
|
45 |
|
46 |
+
**See languages available, lovingly translated by Zendesk Chat users (in alphabetical order)**
|
47 |
|
48 |
* Arabic | Bulgarian | Chinese | Croatian | Czech | Danish | Dutch; Flemish | Estonian | Faroese | Finnish | French | Georgian | German | Greek | Hebrew | Hungarian | Icelandic | Indonesian | Italian | Japanese | Korean | Kurdish | Latvian | Lithuanian | Macedonian | Malay | Norwegian Bokmal | Persian | Polish | Portuguese | Romanian | Russian | Serbian | Slovak | Slovenian | Spanish; Castilian | Swedish | Thai | Turkish | Ukranian | Urdu | Vietnamese
|
49 |
|
50 |
== Changelog ==
|
51 |
+
= 1.4.5 =
|
52 |
+
* Updated support and video URLs
|
53 |
+
|
54 |
= 1.4.4 =
|
55 |
* Rebranding strings to Zendesk Chat
|
56 |
|
160 |
* Signup process is now linked to zopim.com as per Wordpress guidelines.
|
161 |
|
162 |
= 1.1.3 =
|
163 |
+
* Update Zendesk Chat embed script
|
164 |
* Add option to override dashboard settings for chat bubble text
|
165 |
|
166 |
= 1.1.2 =
|
172 |
= 1.1.0 =
|
173 |
* Maintenance update: Greeting messages are now saved properly.
|
174 |
* Add more language options in customization page.
|
175 |
+
* Using new Zendesk Chat async embed script: improve page's load time and do not block page's rendering anymore
|
176 |
|
177 |
= 1.0.7 =
|
178 |
* Maintenance update: Remove phased out "middle left", "middle right" positions
|
219 |
|
220 |
= 0.3.0 =
|
221 |
|
222 |
+
* Feature: Connect to Zendesk Chat servers using 256-bit industry standard SSL for increased security!
|
223 |
* Feature: You can experiment with customizing the widget even without an account.
|
224 |
* Feature: Change the automatic messages displayed on the widget when it first loads, and depending on your online status.
|
225 |
* Feature: Customize the language of the widget.
|
233 |
|
234 |
= 0.1.0 =
|
235 |
|
236 |
+
* Feature: Add the Zendesk Chat widget to your site!
|
237 |
* Feature: Customize look and feel of the widget, including themes and color!
|
238 |
* Feature: Use wordpress user information to populate visitor data in the plugin.
|
239 |
|
249 |
|
250 |
= Do I have to install any software on my server to get this working? =
|
251 |
|
252 |
+
Not at all! Zendesk Chat is a hosted livechat service. Simply configure the plugin and you're done!
|
253 |
|
254 |
= Which web browsers work best with this plugin =
|
255 |
|
256 |
+
Though designed to work on most browsers, Zendesk Chat works best in the following environment: IE 6 or later (PC), Firefox 2 or later (Mac, PC, or Linux), Safari 2 or later (Mac), Google Chrome (PC, Mac).
|
257 |
|
258 |
+
= I managed to install the plugin but cannot link up to Zendesk Chat. Why? =
|
259 |
+
The plugin tries to link up with Zendesk Chat by connecting using a few approaches including PHP Curl. If the outgoing connections are blocked (eg. by a firewall), please request your server administrator.
|
260 |
|
261 |
Alternatively, you can also manually include the script in the footer file ("wp-content/themes/default/footer.php" in your wordpress installation).
|
262 |
|
266 |
|
267 |
= How can I chat with more visitors at the same time? =
|
268 |
|
269 |
+
You can easily do so by upgrading to a better plan. To find out more about the plans and features we offer, please visit https://www.zendesk.com/chat/pricing/#pricing
|
270 |
|
271 |
= Its just not working for me! HELP! =
|
272 |
|
273 |
+
Dont worry!! We are happy to assist! Just come on down to our site at https://www.zendesk.com/chat or leave an email for us at chat@zendesk.com and we will help you with installation.
|
274 |
|
275 |
== Usage ==
|
276 |
|
285 |
Step-by-step Guide:
|
286 |
|
287 |
* Install plugin from WordPress directory and activate it.
|
288 |
+
* Under Zendesk Chat section, click on Account Setup to link up your Zendesk Chat account.
|
289 |
* Customize the chat widget to your preference.
|
290 |
* Finally, make full use of our intuitive Dashboard to manage your chat widget.
|
zopim.php
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
Plugin Name:
|
5 |
-
Plugin URI: http://www.
|
6 |
-
Description:
|
7 |
Author: Zopim
|
8 |
-
Version: 1.4.
|
9 |
-
Author URI: http://www.
|
10 |
Text Domain: zopim
|
11 |
Domain path: /language
|
12 |
*/
|
13 |
|
14 |
-
define( 'VERSION_NUMBER', "1.4.
|
15 |
define( 'ZOPIM_BASE_URL', "https://www.zopim.com/" );
|
16 |
define( 'ZOPIM_ACCOUNT_URL', "https://account.zopim.com/" );
|
17 |
define( 'ZOPIM_SIGNUP_REDIRECT_URL', ZOPIM_ACCOUNT_URL . "?aref=MjUxMjY4:1TeORR:9SP1e-iPTuAVXROJA6UU5seC8x4&visit_id=6ffe00ec3cfc11e2b5ab22000a1db8fa&utm_source=account%2Bsetup%2Bpage&utm_medium=link&utm_campaign=wp%2Bsignup2#signup" );
|
@@ -23,7 +23,7 @@ define( 'ZOPIM_SIGNUP_URL', ZOPIM_BASE_URL . "plugins/createTrialAccount" );
|
|
23 |
define( 'ZOPIM_DASHBOARD_LINK', "https://dashboard.zopim.com/?utm_source=wp&utm_medium=link&utm_campaign=wp%2Bdashboard" );
|
24 |
define( 'ZOPIM_SMALL_LOGO', "https://dashboard.zopim.com/assets/branding/zopim.com/chatman/online.png" );
|
25 |
define( 'ZOPIM_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
26 |
-
define( 'ZOPIM_USER_AGENT', '
|
27 |
|
28 |
require_once( 'includes/compatibility.php' );
|
29 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
Plugin Name: Zendesk Chat Widget
|
5 |
+
Plugin URI: http://www.zendesk.com/chat?iref=wp_plugin
|
6 |
+
Description: Zendesk Chat is an award winning chat solution that helps website owners to engage their visitors and convert customers into fans!
|
7 |
Author: Zopim
|
8 |
+
Version: 1.4.5
|
9 |
+
Author URI: http://www.zendesk.com/chat?iref=wp_plugin
|
10 |
Text Domain: zopim
|
11 |
Domain path: /language
|
12 |
*/
|
13 |
|
14 |
+
define( 'VERSION_NUMBER', "1.4.5" );
|
15 |
define( 'ZOPIM_BASE_URL', "https://www.zopim.com/" );
|
16 |
define( 'ZOPIM_ACCOUNT_URL', "https://account.zopim.com/" );
|
17 |
define( 'ZOPIM_SIGNUP_REDIRECT_URL', ZOPIM_ACCOUNT_URL . "?aref=MjUxMjY4:1TeORR:9SP1e-iPTuAVXROJA6UU5seC8x4&visit_id=6ffe00ec3cfc11e2b5ab22000a1db8fa&utm_source=account%2Bsetup%2Bpage&utm_medium=link&utm_campaign=wp%2Bsignup2#signup" );
|
23 |
define( 'ZOPIM_DASHBOARD_LINK', "https://dashboard.zopim.com/?utm_source=wp&utm_medium=link&utm_campaign=wp%2Bdashboard" );
|
24 |
define( 'ZOPIM_SMALL_LOGO', "https://dashboard.zopim.com/assets/branding/zopim.com/chatman/online.png" );
|
25 |
define( 'ZOPIM_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
26 |
+
define( 'ZOPIM_USER_AGENT', 'Zendesk Chat Wordpress Plugin' );
|
27 |
|
28 |
require_once( 'includes/compatibility.php' );
|
29 |
|