"Who is online" IP

iPhonefreak

Paragon
Joined
Apr 7, 2012
Messages
1,521
Reaction score
0
FP$
6
Hi, in a theme i installed, in the who is online area it does not show the IP address and everything else that most forums do. How can I get this?
 
I can not release that information, but here is what I am talking about.
 

Attachments

  • Untitled3.webp
    Untitled3.webp
    4 KB · Views: 89
  • Untitled4.webp
    Untitled4.webp
    8.3 KB · Views: 85
Not sure what forum software that is, but it could be the theme is just missing the variable to call the IP information.

Look for a template called something like Who's Online or Online and compare both themes.
 
I'm going to take guess and say it's the latest phpBB (3)

Look for the viewforum_body template.

Look for something like:

{user_row.USERNAME_FULL}

It should be wrapped in a <td>

It should be:

<td>{user_row.USERNAME_FULL}<!-- IF user_row.USER_IP --> <span style="margin-left: 30px;">{L_IP}: <a href="{user_row.U_USER_IP}">{user_row.USER_IP}</a> &#187; <a href="{user_row.U_WHOIS}" onclick="popup(this.href, 750, 500); return false;">{L_WHOIS}</a></span><!-- ENDIF -->
<!-- IF user_row.USER_BROWSER --><br />{user_row.USER_BROWSER}<!-- ENDIF --></td>
 
Back
Top Bottom