Ok, I found out how to add more stats to the Stat block out front. It works...but the text doesn't work.
I get the text "3 _i Århus" (It count the amount of members in the 10 largest cities of Denmark)
This is my SQL-thing:
INSERT INTO `sys_stat_site` (`ID`, `Name`, `Title`, `UserLink`, `UserQuery`, `AdminLink`, `AdminQuery`, `IconName`, `StatOrder`) VALUES
(30, 'aar', ' i Århus', '', 'SELECT COUNT(*) FROM `Profiles` WHERE `City`=''Århus''', '', 'SELECT COUNT(*) FROM `Profiles` WHERE `City`=''Århus''', '', 7);
What I would like is to get the "_" away from the result-text, so it say "3 i århus" instead of "3 _i århus"
Can this be done? and if so - how?