Topic: How to make that everyone sees IP near the username

How to make that everyone sees IP near the username

Anyone knows?

Thanks!!!

Re: How to make that everyone sees IP near the username

User IP is displayed in every posts.
For example:

admin
Administrator
Registered: 2010-01-13
Posts: 3
IP: 127.0.0.1
E-mail

Online

The same way IP can be viewed in the user profile

Re: How to make that everyone sees IP near the username

Yes but how to do it big_smile big_smile

Re: How to make that everyone sees IP near the username

You must open the file viewtopic.php and make changes in the lines #248, #249, #250, #254
the result should look like this:

//        if ($pun_user['g_id'] < PUN_GUEST)
//        {
            $user_info[] = '<dd>IP: '.$cur_post['poster_ip'];

            if ($cur_post['admin_note'] != '')
                $user_info[] = '<dd>'.$lang_topic['Note'].': <strong>'.pun_htmlspecialchars($cur_post['admin_note']).'</strong>';
//        }

After making correction do not forget to save your changes.

Re: How to make that everyone sees IP near the username

Thanks it works!!!