atsaunier Posted October 20, 2006 Posted October 20, 2006 Is there a way to have it where it shows how many people are using a forum skin on your forum?Like this mod by D21 HEREor even sometinhg in the acp that shows it and mayby even which user. just an idea that can help on deciding which skins are not beeing used and or which to remove, :)
Michael Posted October 20, 2006 Posted October 20, 2006 I just query for that info when I want to know which skins on my site are most popular:SELECT s.set_name, COUNT(*) AS cnt FROM ibf_members m LEFT JOIN ibf_skin_sets s ON (s.set_skin_set_id=m.skin) WHERE m.skin > 0 GROUP BY skin ORDER BY cnt DESC
Recommended Posts
Archived
This topic is now archived and is closed to further replies.