Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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
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.
@Asti: Perfect! So I can put this in a plugin 🙂
Thank you for the fast help.
I understand. But if I use it in a custom plugin, I can change / update my themes. Again: Thank you 🙂