Members recently online

Members recently online [Paid] 3.0

No permission to buy ($35.00)
I am looking for one where you can assign permissions to view to admins only.

So you want only Admins to view the widget?

On the widget settings, under "Display Condition", put:

Code:
$xf.visitor.is_admin

If you want it to be from specific groups, then put:

Code:
{{$xf.visitor.isMemberOf([x, y])}}

Replace X and Y with the group ID numbers, you can also add more. Like:
Code:
{{$xf.visitor.isMemberOf([3, 4, 8, 10])}}
 
Top Bottom