XF 1.4 statistics on choosing new style

asma

Member
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?
 
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.
 
Top Bottom