View Full Version : Most popular / impopular style ?
DF031
08-04-2013, 04:32 AM
Good morning all,
Is there a way, using the ACP, to find out how many users are using a specific style ?
Or do I need to use phpmyadmin in order to find this out ?
ozzy47
08-04-2013, 08:57 AM
Only problem with that is, you can find out if the user selected the style in the User CP options. Styles chosen in the Quick Style Chooser on the footer don't show (as they are in cookies). Which is how alot of members change the style.
DF031
08-04-2013, 10:31 AM
Which is how alot of members change the style.
How do you know that ?
Is there data available on that ?
ozzy47
08-04-2013, 12:54 PM
No hard data, but it has been what I have seen on sites I used to run.
DF031
08-04-2013, 01:25 PM
In case I want to see that on our forum, what should I do ?
ozzy47
08-04-2013, 01:33 PM
You could run this SQL query:
SELECT
user.styleid,
COUNT(user.styleid) AS total,
style.title
FROM
user
LEFT OUTER JOIN
style ON
style.styleid = user.styleid
WHERE
user.styleid <> 0
GROUP BY
styleid
ORDER BY
total
DF031
08-04-2013, 06:21 PM
Thanks Ozzy
The results of the query where;
https://dl.dropboxusercontent.com/u/2287968/Forums/VBorg6584/snip.PNG
But what does that mean ? Which users are listed ? We have about 11 000
--------------- Added 1375647927 at 1375647927 ---------------
Think I got it. Deleting the WHERE statement results in:
https://dl.dropboxusercontent.com/u/2287968/Forums/VBorg6584/Capture.PNG
Does this mean that about 11 000 have not set any style and are using the default ?
ozzy47
08-04-2013, 06:38 PM
Correct, styleid 0 is nothing set in the usercp.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.