On our server, WTI is getting the user’s IP address from HTTP_X_FORWARDED_FOR (HTTP_CLIENT_IP is empty). But this variable is coming with multiple IP addresses (IP + proxy IPs), and because of that, voting only once based on IP isn’t working. I temporarily fixed with adding the code below to wp-content/plugins/wti-like-post/wti-like-post-pro.php WtiGetRealIpAddress function, but that’s something that will be overwritten in the next update if not fixed by you guys. Thank you.
$wti_ip_address = explode(‘,’, $wti_ip_address);
$wti_ip_address = trim(reset($wti_ip_address));
return $wti_ip_address;