Comments – wpDiscuz - Version 7.3.11

Version Description

Download this release

Release Info

Developer AdvancedCoding
Plugin Icon 128x128 Comments – wpDiscuz
Version 7.3.11
Comparing to
See all releases

Code changes from version 7.3.10 to 7.3.11

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.3.10
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.3.11
6
  * Author: gVectors Team
7
  * Author URI: https://gvectors.com/
8
  * Plugin URI: https://wpdiscuz.com/
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: gVectors Team
3
  Tags: comment, comments, ajax comments, comment form, comment fields
4
  Requires at least: 5.0
5
- Tested up to: 5.8
6
- Stable tag: 7.3.10
7
  Requires PHP: 5.6 and higher
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -185,6 +185,11 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
185
 
186
  == Changelog ==
187
 
 
 
 
 
 
188
  = Comments - wpDiscuz v7.3.10 - 13.01.2022 =
189
 
190
  * Added: Option to display Social Networks Avatars
2
  Contributors: gVectors Team
3
  Tags: comment, comments, ajax comments, comment form, comment fields
4
  Requires at least: 5.0
5
+ Tested up to: 5.9
6
+ Stable tag: 7.3.11
7
  Requires PHP: 5.6 and higher
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
185
 
186
  == Changelog ==
187
 
188
+ = Comments - wpDiscuz v7.3.11 - 25.01.2022 =
189
+
190
+ * Added: WordPress v5.9 compatibility
191
+ * Changed: The users @nicename for mentions hidden by default
192
+
193
  = Comments - wpDiscuz v7.3.10 - 13.01.2022 =
194
 
195
  * Added: Option to display Social Networks Avatars
utils/class.WpdiscuzHelper.php CHANGED
@@ -406,7 +406,7 @@ class WpdiscuzHelper implements WpDiscuzConstants {
406
  }
407
 
408
  public function userNicename($html, $comment, $user) {
409
- if (apply_filters("wpdiscuz_show_nicename", $this->options->subscription["enableUserMentioning"]) && isset($user->user_nicename)) {
410
  $html .= "<span class='wpd-user-nicename' data-wpd-clipboard='@" . esc_attr($user->user_nicename) . "'>(@" . esc_html($user->user_nicename) . ")</span>";
411
  }
412
  return $html;
406
  }
407
 
408
  public function userNicename($html, $comment, $user) {
409
+ if (apply_filters("wpdiscuz_show_nicename", false) && $this->options->subscription["enableUserMentioning"] && isset($user->user_nicename)) {
410
  $html .= "<span class='wpd-user-nicename' data-wpd-clipboard='@" . esc_attr($user->user_nicename) . "'>(@" . esc_html($user->user_nicename) . ")</span>";
411
  }
412
  return $html;