Форуми / Cotonti / Extensions / SedPlus

fraze
#1 01.08.2009 04:02
Is there anything like the sedplus plugin for cotonti? i dont really want to use old sed plugins for this and mainly just want sedplus for the New/Old/Locked forum section icons instead of the "+" for new posts.
Kilandor
#2 01.08.2009 05:39
Sedplus is actually pretty completely obsolete, this can be done without that plugin. Although I've forgot to add that feature into core, it can be templated.

You can use this exact code to accomplish it The + will still show though

<!-- IF {PHP.fsn.fs_state}  -->
	<img src="skins/{PHP.skin}/img/system/forums_locked.gif" alt="" />
	<!--
<!-- ENDIF -->
<!-- IF {PHP.fsn.fs_newposts}  -->
	<img src="skins/{PHP.skin}/img/system/forums_new.gif" alt="" />
<!-- ELSE -->
	<img src="skins/{PHP.skin}/img/system/forums.gif" alt="" />
<!-- ENDIF -->
<!-- IF {PHP.fsn.fs_state}  -->
	-->
<!-- ENDIF -->
fraze
#3 01.08.2009 05:59
brilliant - thanks kilandor!

I'm sure having that in the core would be a good idea, as it means the forums will have more of a normal functionality compared to other forums then.

i'm guessing that code goes where the current <img src="{FORUMS_SECTIONS_ROW_ICON}" alt="" /> is
Kilandor
#4 01.08.2009 06:09
Correct
fraze
#5 02.08.2009 18:58
worked great thanks :)