Hello,
I'm using the following code in rating.php to show the user IP:
$user_title .= __('IP', 'user_rating') . ': ' . $from_user['s_access_ip'];
It works fine, however on PHP 7.4, I'm getting the following notices:
PHP Notice: Undefined variable: from_user
PHP Notice: Trying to access array offset on value of type null
Any advice on how to fix this?
Thanks!