Version Description
Download this release
Release Info
Developer | taron96 |
Plugin | Comments – wpDiscuz |
Version | 7.1.2 |
Comparing to | |
See all releases |
Code changes from version 7.1.1 to 7.1.2
- class.WpdiscuzCore.php +1 -1
- forms/wpdFormAttr/Form.php +1 -1
- readme.txt +11 -5
class.WpdiscuzCore.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
* Plugin Name: wpDiscuz
|
4 |
* Description: #1 WordPress Comment Plugin. Innovative, modern and feature-rich comment system to supercharge your website comment section.
|
5 |
-
* Version: 7.1.
|
6 |
* Author: gVectors Team
|
7 |
* Author URI: https://gvectors.com/
|
8 |
* Plugin URI: https://wpdiscuz.com/
|
2 |
/*
|
3 |
* Plugin Name: wpDiscuz
|
4 |
* Description: #1 WordPress Comment Plugin. Innovative, modern and feature-rich comment system to supercharge your website comment section.
|
5 |
+
* Version: 7.1.2
|
6 |
* Author: gVectors Team
|
7 |
* Author URI: https://gvectors.com/
|
8 |
* Plugin URI: https://wpdiscuz.com/
|
forms/wpdFormAttr/Form.php
CHANGED
@@ -1301,7 +1301,7 @@ class Form {
|
|
1301 |
}
|
1302 |
}
|
1303 |
} else {
|
1304 |
-
$this->isUserCanSeeComments = $this->generalOptions["guest_can_see_comments"];
|
1305 |
}
|
1306 |
return $this->isUserCanSeeComments;
|
1307 |
}
|
1301 |
}
|
1302 |
}
|
1303 |
} else {
|
1304 |
+
$this->isUserCanSeeComments = $this->generalOptions["guest_can_see_comments"] = isset($this->generalOptions["guest_can_see_comments"]) ? $this->generalOptions["guest_can_see_comments"] : 1;
|
1305 |
}
|
1306 |
return $this->isUserCanSeeComments;
|
1307 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: gVectors Team
|
|
3 |
Tags: comment, comments, ajax comments, comment form, comment fields
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.6
|
6 |
-
Stable tag: 7.1.
|
7 |
Requires PHP: 5.4 and higher
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
@@ -179,6 +179,16 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
|
|
179 |
|
180 |
== Changelog ==
|
181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
= Comments - wpDiscuz v7.1.1 =
|
183 |
|
184 |
* Added: Auto-cleanup of orphaned comment attachments
|
@@ -189,10 +199,6 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
|
|
189 |
* Added: Action hook `wpdiscuz_add_rating` on submitting a new rating
|
190 |
* Added: Filter hook `wpdiscuz_enable_feedback_shortcode_button` to disable inline comment button from the editor toolbar
|
191 |
|
192 |
-
**IMPORTANT!**
|
193 |
-
1. Please don't forget delete all caches and purge CDN after the update.
|
194 |
-
2. If you're updating from 5.x.x versions please read this topic: [https://wordpress.org/support/topic/before-updating-to-wpdiscuz-7-version/](https://wordpress.org/support/topic/before-updating-to-wpdiscuz-7-version/)
|
195 |
-
|
196 |
|
197 |
= Comments - wpDiscuz v7.1.0 =
|
198 |
|
3 |
Tags: comment, comments, ajax comments, comment form, comment fields
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.6
|
6 |
+
Stable tag: 7.1.2
|
7 |
Requires PHP: 5.4 and higher
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
179 |
|
180 |
== Changelog ==
|
181 |
|
182 |
+
= Comments - wpDiscuz v7.1.2 =
|
183 |
+
|
184 |
+
* Fixed Bug: Guest doesn't see comments
|
185 |
+
* Fixed Bug: Some issues with the previous version.
|
186 |
+
|
187 |
+
**IMPORTANT!**
|
188 |
+
1. Please don't forget delete all caches and purge CDN after the update.
|
189 |
+
2. If you're updating from 5.x.x versions please read this topic: [https://wordpress.org/support/topic/before-updating-to-wpdiscuz-7-version/](https://wordpress.org/support/topic/before-updating-to-wpdiscuz-7-version/)
|
190 |
+
|
191 |
+
|
192 |
= Comments - wpDiscuz v7.1.1 =
|
193 |
|
194 |
* Added: Auto-cleanup of orphaned comment attachments
|
199 |
* Added: Action hook `wpdiscuz_add_rating` on submitting a new rating
|
200 |
* Added: Filter hook `wpdiscuz_enable_feedback_shortcode_button` to disable inline comment button from the editor toolbar
|
201 |
|
|
|
|
|
|
|
|
|
202 |
|
203 |
= Comments - wpDiscuz v7.1.0 =
|
204 |
|