wpDiscuz – Comment Author Info 7.1.1

Original price was: $8.00.Current price is: $3.94.

Version: 7.1.1
Updated: May 15, 2025
Developer: WPDiscuz
SKU: a914c12d5591 Categories: , Tag:
Description

WordPress Comment System has a lack of information about comment authors, people only see commenter name and avatar. wpDiscuz Comment Author Info addon is designed to provide extended details about comment authors. Using this addon people will be able to see comment author extended profile, activity, votes, and subscriptions. Click on comment author info icon and open pop-up window with according tabs. In the Profile tab, you can see commenter quick statistic (number of comments, posts, likes, dislikes), biography, etc… In Activity tab, all comments of this author, in Votes tab: all voted comments and in Subscriptions tab: all type of subscriptions to new comments.

PRESALE INFORMATION

Please read before purchase any item

  • Do not forget to read our Terms of Service before make a purchase.
  • If you have any questions, please first read the FAQ.
  • If you have not found the answer to your question, please contact us at Support
  • Please note that any digital products presented on the website do not contain malicious code, viruses or advertising.
  • We do not offer any additional author services like author support and license keys and we are not affiliated or in any way related to third-party developers or trademark owners.

Common Issues
  • Don´t forget that some products in many occasions come in a double compression, that is to say, a zip file inside another zip. Please check your product when download BEFORE INSTALLING to see if this is the case because if it is unzip the main zip and you will find the installable zip inside.
  • Remember that the Plugins, Extensions and Addons are always uploaded in the Plugins area. And the themes always in the Appearance area.
  • We suggest that after purchasing a plan or item you delete your cache as it may interrupt the proper functioning of the items.
  • Before purchasing a subscription, package or individual product on the website, make sure your hosting meets the following minimum requirements for WordPress:

Apache or NGINX based web server with 128MB of RAM
PHP version 5.6 or 7.0
MySQL version 5.6+ or MariaDB version 10.0+
Apache Module mod_rewrite

To avoid errors during product installation, make sure you are using the correct PHP settings on your web server:

max_execution_time = 600;
max_input_vars = 5000;
memory_limit = 256M;
post_max_size = 128M;
upload_max_filesize = 128M;

  • For themes with a weight of more than 200 megabytes (which include the different templates) it is necessary that you make your upload through FTP.
ACTIVATION NOTES

NOTE:
ACTIVATION INFORMATION: OR you can add the following but installing the preactivated core plugin is the easy way.

To tweak all wpDiscuz addons and not have to edit their files or even enter license keys, just paste the code below into the theme functions.php page (see below note) and any wpdiscuz addons installed will automatically be activated

function fix_wpdiscuz_addons() {
if ( ! function_exists( 'get_plugins' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$all_plugins = get_plugins();
foreach ( $all_plugins as $plugin_slug=>$values ){
if(strpos ($plugin_slug, "pdiscuz-")){
$slug_parts = explode("/", $plugin_slug);
$discuz_addon = $slug_parts[0];
get_option('gvt_product_secret_' . $discuz_addon) ? true : add_option('gvt_product_secret_' . $discuz_addon, 'Congratulations! Plugin activated successfully.');
}
}
}
add_action( 'admin_init', 'fix_wpdiscuz_addons' );

You can install this plugin: Code Snippets

https://wordpress.org/plugins/code-snippets/

Once installed you can add the code to a dedicated snippet without going to the hassle of entering the info in your themes' functions. This way if you change themes then you have all your snippets in one place and nothing will be lost.