Hi,
I'm creating a new XF forum to replace my current VB and will eventually port over. One thing I like in VB is the use of icons to indicate various status of the thread in question. So I would like to replace the first avatar with an Icon that depicts unread, thread with replies, hot threads, new threads, closed thread, thread with user posts, etc.
SO far, I've been only able to display unread/read with the following syntax. Question is
1) How do I extend this syntax to accommodate the above conditions?
2) Where do I find a full list of all conditionals?
<xen:if is="{$thread.isNew}">
<img src="path/to/unread/icon" />
<xen:else />
<img src="path/to/read/icon" />
</xen:if>
I'm creating a new XF forum to replace my current VB and will eventually port over. One thing I like in VB is the use of icons to indicate various status of the thread in question. So I would like to replace the first avatar with an Icon that depicts unread, thread with replies, hot threads, new threads, closed thread, thread with user posts, etc.
SO far, I've been only able to display unread/read with the following syntax. Question is
1) How do I extend this syntax to accommodate the above conditions?
2) Where do I find a full list of all conditionals?
<xen:if is="{$thread.isNew}">
<img src="path/to/unread/icon" />
<xen:else />
<img src="path/to/read/icon" />
</xen:if>