Notifications
Clear all

Function in comments.php doesn't work with Wpdiscuz

2 Posts
2 Users
0 Likes
4,015 Views
(@gharsalli)
Member Customer
Joined: 6 years ago
Posts: 1
Topic starter  

In comments.php file, I have this snippet to limit the number of comments a user can submit per day.

<?php 
global $wpdb,$current_user;
$limit = 1; //this is limit per day per user
$comment_count = $wpdb->get_var( $wpdb->prepare("
SELECT count(*)
FROM wp_comments
WHERE comment_author = '%s'
AND comment_date >= DATE_SUB(NOW(),INTERVAL 1 DAY);"
,$current_user->user_login) );

if($comment_count < $limit) {
echo 'You submited '.$comment_count.' comment(s) from '.$limit.' available ';
comment_form( hestia_comments_template() );
}
else {
echo 'You have reached your comments daily limit : '.$limit;
}
?>

This code work perfectly with WP core comment system, but when switch to wpdiscuz, it doesn't work at all.
Any suggestion or change to let wpdiscuz supports this code.
Thanks

This topic was modified 5 years ago 2 times by gharsalli

   
Quote
Topic Tags
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5860
 

Hi @gharsalli,

I apologize for the delay.

Yes, the code will not live with wpDiscuz. The code in this support topic should help you.

https://wordpress.org/support/topic/one-comment-per-user-per-post-2/


   
ReplyQuote
Share:
Scroll to top