Hey Jean, I will go through them one at a time in the same order for you..
You can change the icon for your forum group (or even forum icon) by going to your admin panel – then Forum > Forums > Custom Icons. You can browse for your custom icons here, and then enable them from the drop down box when editing a group or forum in ‘Manage Groups and Forums’.
When you create a pinned topic, it adds the class of .spPinnedTopic to the topic section. You might not already have this class in your stylesheet, but you can certainly make use of it for something like background or even font colour. Just make a new element in your style sheet i.e
#spMainContainer .spForumTopicSection.spEven.spPinnedTopic,
#spMainContainer .spForumTopicSection.spOdd.spPinnedTopic {
background: red;
}
and
#spMainContainer .spForumTopicSection.spEven.spPinnedTopic:hover,
#spMainContainer .spForumTopicSection.spOdd.spPinnedTopic:hover {
background: red;
}
Depending on what theme you are using dictates how you would go about removing the stats section. I will use Default theme as an example as it looks like that is what you are running. Open your theme folder and go to default > templates > spFoot.php. If you scroll down until you find the ‘start the stats section’ message, you can comment the whole thing out using /* before the text and */ after.
You can put these tags before the first section start such as: /* sp_SectionStart(‘tagClass=spStatsSection’, ‘stats’); and you can finish by putting */ when that section closes i.e sp_SectionEnd(‘tagClass=spClear’, ‘stats’); */
I’m not too sure what you mean when you are referring to the list of tags. If you create a topic and add a title, it gives you the option of ‘Get Suggested Tags From’.. One of the options is ‘Local Tags’.. Is this what you were looking for?
Have you read the Codex article on featured topics and posts? Definitely a good place to start if not..
Yes you can have the tags show all the time without the need to use the ‘tags’ button.. You will need to go to your theme, open forum-themes > default > templates > spForumView.php
First find the tags function line which is:
if (function_exists('sp_TopicIndexTagsList')) sp_TopicIndexTagsList('tagClass=spTopicTagsList spButton spLeft', __sp('Tags'), __sp('Show the tags for this topic'));
All you need to do is add the collapse argument which defaults to 1 (true), but you want ‘&collapse=0’
It will then appear
if (function_exists('sp_TopicIndexTagsList')) sp_TopicIndexTagsList('tagClass=spTopicTagsList spButton spLeft&collapse=0', __sp('Tags'), __sp('Show the tags for this topic'));
I think I covered everything!