Brent W Well-known member Oct 12, 2016 #1 I'd like to alter the <title> tags for threads that have polls. Is there a conditional I can use?
Chris D XenForo developer Staff member Oct 12, 2016 #2 You would do it in the thread_view template itself, and edit the <xen:title> tag. Code: <xen:title><xen:if is="{$thread.discussion_type} == 'poll'">[POLL] </xen:if>Blah blah...</xen:title> Upvote 0 Downvote
You would do it in the thread_view template itself, and edit the <xen:title> tag. Code: <xen:title><xen:if is="{$thread.discussion_type} == 'poll'">[POLL] </xen:if>Blah blah...</xen:title>