The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Display user likes ...
 
Share:
Notifications
Clear all

Limited Support

Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.

We appreciate your patience and understanding while our team is away. Thank you for being part of the wpDiscuz community!

Merry Christmas and Happy Holidays! πŸŽ„

Question [Solved] Display user likes on one page

2 Posts
2 Users
1 Reactions
1,122 Views
Posts: 18
 leo
Topic starter
(@leo69)
Eminent Member
Joined: 3 years ago

Hello
Good time
With change in this piece of function code Dear Asti , is it possible for the user to be able to see all the comments he liked or disliked on the page?

Β 

add_shortcode('wpdiscuz_likes', 'wpdiscuz_current_user_likes');
function wpdiscuz_current_user_likes(){
    global $wpdb,$user_ID;
    if(!$user_ID){
        return;
    }    $like_count = (int)$wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM `{$wpdb->prefix}wc_users_voted` WHERE `vote_type` = 1 AND `user_id` = %d", $user_ID));
    $dislike_count = (int)$wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM `{$wpdb->prefix}wc_users_voted` WHERE `vote_type` = -1 AND `user_id` = %d", $user_ID));    echo 'Like Count - ' . $like_count .' Dislike Count - ' . $dislike_count;}

1 Reply
Asti
Posts: 8205
 Asti
Support
(@asti)
Illustrious Member
Joined: 8 years ago

@mandegar266,

I'd suggest you check out the following two addons:Β 

  1. wpDiscuz – Comment Author Info. The addon allows seeing comment author extended profiles, activity, votes and subscriptions
  2. wpDiscuz – Advanced Likers. The addon opens a pop-up window with all voters/likes of the current comment.

Share: