asma Member Oct 4, 2015 #1 where or how can i find out how many users are using the new style i deployed on my forum instead of the old default one?
where or how can i find out how many users are using the new style i deployed on my forum instead of the old default one?
Amaury Well-known member Oct 4, 2015 #2 It's not possible to know how many users are using a particular style--at least not without an add-on. Upvote 0 Downvote
It's not possible to know how many users are using a particular style--at least not without an add-on.
Dadparvar Well-known member Oct 4, 2015 #3 This query in database can show you the result: Code: SELECT * FROM `xf_user` WHERE `style_id` != 0 This will show the number of users who don't use your default style. Then if you have more than 2 styles, so use this one: Code: SELECT * FROM `xf_user` WHERE `style_id` = x Instead of X write the style's ID. Upvote 0 Downvote
This query in database can show you the result: Code: SELECT * FROM `xf_user` WHERE `style_id` != 0 This will show the number of users who don't use your default style. Then if you have more than 2 styles, so use this one: Code: SELECT * FROM `xf_user` WHERE `style_id` = x Instead of X write the style's ID.