XF 2.1 footer how can I show the number of online users?

SkinsForum

Member
hello footer how can I show the number of online users?

this did not happen
Code:
{'total': number($online.counts.total) }
 
Thanks for the answer Do you have any idea how I can do it?
I will take a look tomorrow ;)
For now you can try to add something like this :
HTML:
{{ phrase('online_now_x',{
                'total': number($online.counts.total)})
            }}

In online_now_x add this :
  • Total : {total}
Not tested ^^
 
Top Bottom