Dec 07, 2020 11:05 am
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
Dec 07, 2020 11:40 am
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.
Dec 07, 2020 12:36 pm
@Asti: Perfect! So I can put this in a plugin 🙂
Thank you for the fast help.
Dec 07, 2020 12:44 pm
I understand. But if I use it in a custom plugin, I can change / update my themes. Again: Thank you 🙂