hi,
I combined the original custom where "user_id IN (SELECT DISTINCT userid FROM #__session WHERE client_id=0)"
with "group_id NOT IN (55)" this way:
user_id IN (SELECT DISTINCT userid FROM #__session WHERE client_id=0) AND group_id NOT IN (55)
It seems to be wrong, because it doesn't work
What would be the correct syntax? (I just want to see all the registered visitors except some users who are in the hidden administration group.)
Thank you