Recent content by Miles Gillham

  1. Miles Gillham

    XF 1.5 Is there a way to see which users are using a particular style on our site?

    Old thread but... this query will give you a count of users who have nominated a style (otherwise they will use the default style). select style.title as 'Style', count(user.username) as 'Users' from xf_style as style left join xf_user as user on style.style_id=user.style_id group by style.title;
  2. Miles Gillham

    XF 1.5 Please enter a value using 25 characters or fewer.

    Old topic I know, but for reference to others (as my googling for this error lead me straight here) I had identical problem. It was within addon*.xml and I'd blown out the permission field interface_group_id but as Chris D says there are probably a few others to check as well.
  3. Miles Gillham

    XF 1.5 Best way to obtain list of user's watched forums

    The model XenForo_Model_ThreadWatch has the method getThreadsWatchedByUser. However, I can't find an equivalent within the Forum models. The closest I seem to get is XenForo_Model_Forum which has some useful methods once you have the forums (eg getUnreadThreadCountInForum is helpful for what...
Top Bottom