Version Description
- Fix PHP notices
- Add documentation for releasing new versions of the plugin
Download this release
Release Info
Developer | miogalang |
Plugin | Zendesk Chat |
Version | 1.3.7 |
Comparing to | |
See all releases |
Code changes from version 1.3.6 to 1.3.7
- README.md +7 -0
- accountconfig.php +2 -2
- readme.txt +5 -1
- zopim.php +3 -3
README.md
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# zopim-wordpress
|
2 |
+
|
3 |
+
## Releasing new versions of the plugin to wordpress.org
|
4 |
+
|
5 |
+
If you are a developer looking to release a new version of the plugin
|
6 |
+
|
7 |
+
See: [This guide](https://zendesk.atlassian.net/wiki/display/ENG/Publishing+new+versions+of+plugins+to+Wordpress.org)
|
accountconfig.php
CHANGED
@@ -131,7 +131,7 @@ Currently Activated Account → <b><?php echo get_option('zopimUsername'); ?>
|
|
131 |
</div>
|
132 |
<?php } else { ?>
|
133 |
<div id="icon-options-general" class="icon32"><br/></div><h2>Set up your Zopim Account</h2>
|
134 |
-
<?php if ($error
|
135 |
echo $error["auth"];
|
136 |
} else if ($message == "") { ?>
|
137 |
Congratulations on successfully installing the Zopim WordPress plugin!<br>
|
@@ -142,7 +142,7 @@ Congratulations on successfully installing the Zopim WordPress plugin!<br>
|
|
142 |
<div class="postbox">
|
143 |
<h3 class="hndle"><span>Link up with your Zopim account</span></h3>
|
144 |
<div style="padding:10px;">
|
145 |
-
<?php if (isset($error
|
146 |
<form method="post" action="admin.php?page=zopim_account_config">
|
147 |
<input type="hidden" name="action" value="login">
|
148 |
<table class="form-table">
|
131 |
</div>
|
132 |
<?php } else { ?>
|
133 |
<div id="icon-options-general" class="icon32"><br/></div><h2>Set up your Zopim Account</h2>
|
134 |
+
<?php if (isset($error["auth"])) {
|
135 |
echo $error["auth"];
|
136 |
} else if ($message == "") { ?>
|
137 |
Congratulations on successfully installing the Zopim WordPress plugin!<br>
|
142 |
<div class="postbox">
|
143 |
<h3 class="hndle"><span>Link up with your Zopim account</span></h3>
|
144 |
<div style="padding:10px;">
|
145 |
+
<?php if (isset($error["login"])) { echo '<span class="error">'.$error["login"].'</span>'; } ?>
|
146 |
<form method="post" action="admin.php?page=zopim_account_config">
|
147 |
<input type="hidden" name="action" value="login">
|
148 |
<table class="form-table">
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: bencxr
|
|
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.1.1
|
6 |
-
Stable tag: 1.3.
|
7 |
|
8 |
Zopim lets you monitor and chat with visitors surfing your store in real-time. Impress them personally and ease them into their purchase.
|
9 |
|
@@ -48,6 +48,10 @@ What are you waiting for? Download Zopim Live Chat plugin now and <a href="https
|
|
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.3.6 =
|
52 |
* Fix 'Cannot modify header information' PHP error by registering and enequeing script
|
53 |
* Include js file
|
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.1.1
|
6 |
+
Stable tag: 1.3.7
|
7 |
|
8 |
Zopim lets you monitor and chat with visitors surfing your store in real-time. Impress them personally and ease them into their purchase.
|
9 |
|
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.3.7 =
|
52 |
+
* Fix PHP notices
|
53 |
+
* Add documentation for releasing new versions of the plugin
|
54 |
+
|
55 |
= 1.3.6 =
|
56 |
* Fix 'Cannot modify header information' PHP error by registering and enequeing script
|
57 |
* Include js file
|
zopim.php
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/*
|
4 |
Plugin Name: Zopim Widget
|
5 |
Plugin URI: http://www.zopim.com/?iref=wp_plugin
|
6 |
Description: Zopim 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.3.
|
9 |
Author URI: http://www.zopim.com/?iref=wp_plugin
|
10 |
*/
|
11 |
|
12 |
-
define('VERSION_NUMBER', "1.3.
|
13 |
define('ZOPIM_BASE_URL', "https://www.zopim.com/");
|
14 |
define('ZOPIM_ACCOUNT_URL', "https://account.zopim.com/");
|
15 |
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");
|
1 |
<?php
|
2 |
+
|
3 |
/*
|
4 |
Plugin Name: Zopim Widget
|
5 |
Plugin URI: http://www.zopim.com/?iref=wp_plugin
|
6 |
Description: Zopim 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.3.7
|
9 |
Author URI: http://www.zopim.com/?iref=wp_plugin
|
10 |
*/
|
11 |
|
12 |
+
define('VERSION_NUMBER', "1.3.7");
|
13 |
define('ZOPIM_BASE_URL', "https://www.zopim.com/");
|
14 |
define('ZOPIM_ACCOUNT_URL', "https://account.zopim.com/");
|
15 |
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");
|