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

[Solved] Allow multi voting?

5 Posts
2 Users
1 Likes
749 Views
Posts: 5
 Egg
Topic starter
(@egg)
Active Member
Joined: 3 years ago

Dear all,

we have a special environment and we would like to use wpdiscuz.

Our environment: all guests uses one computer / terminal as "guest" (no login). So everyone should be able to comment, vote and so on.

Therefore we have to deactivate any code which prevents multi vote, locks same user to do something twice, or even set a cookie with the name.

Any hints where to find the functions?

Thank you,

Michael

4 Replies
Asti
Posts: 7098
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

Hi @egg,

Please use this code:

add_filter('pre_comment_user_ip', function(){
    if(!is_user_logged_in()){
        return md5(uniqid());
    }
});

Put it in the active theme functions.php file. More information on how to add insert custom code.

Posts: 5
 Egg
Topic starter
(@egg)
Active Member
Joined: 3 years ago

@Asti: Perfect! So I can put this in a plugin 🙂

Thank you for the fast help.

1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7098

@egg,

Not in a plugin just in the current active theme functions.php file.

Posts: 5
 Egg
Topic starter
(@egg)
Active Member
Joined: 3 years ago

I understand. But if I use it in a custom plugin, I can change / update my themes. Again: Thank you 🙂

Share: