A user put lots of urls in comment. I delete the user from user manager, so that user comments also deleted but comment count not reduced. Please help.
if you can PM me and i can check your site I will find out. it may be a cache thing or could be something else which i would have to see
I wonder if the post_comments_count doesn't get updated when deleting a user and their comments. To fix in your database, first determine what the comment count is in hotaru_posts by running this in MySQL (substitute the post_id for x): Code: SELECT post_comments_count FROM hotaru_posts WHERE post_id = x If you find that isn't correct, you can use this MySQL code to reset it (to zero in the example): Code: UPDATE hotaru_posts SET post_comments_count = 0 WHERE post_id = x That should solve the immediate problem.
I'd love to display comment with HTML tags. I noticed that they're stored in the database without the tags. How to fix this?