Jump to content
WebFlake
  • 0

Online/Offline Dot not working in topics


-Cookie-

Question

i have tried using the online/offline dot in my horizontal userinfo and it doesn't work, for instance when someone is online on my board it still says there offline

 

the coding i have at the moment

<if test="$post['author']['_online']"><img src="{style_images_url}/online.png" alt="" class='post_online' data-tooltip="Online" /><else /><img src="{style_images_url}/offline.png" alt="" class='post_online' data-tooltip="Offline" /></if>

 

for some reason it doesn't say if there online, it just says there offline

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

That is because the variable is not $post but $author

<if test="$author['_online']"><img src="{style_images_url}/online.png" alt="" class='post_online' data-tooltip="Online" /><else /><img src="{style_images_url}/offline.png" alt="" class='post_online' data-tooltip="Offline" /></if>

worked great thanks so much

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...