CNK Active member Apr 11, 2017 #1 Hello, There is any addon I could set up additional HTML text below forum desciption, here: I would like to put my HTML code, but specific only for selected categories/forums Regards!
Hello, There is any addon I could set up additional HTML text below forum desciption, here: I would like to put my HTML code, but specific only for selected categories/forums Regards!
P Paul B XenForo moderator Staff member Apr 11, 2017 #2 You can do that using the ad_forum_view_above_thread_list template and a conditional statement with an array of the relevant node IDs. Code: <xen:if is="in_array({$forum.node_id}, array(x, y, z))"> Content </xen:if> Point 26 here explains how to utilise the category ID: https://xenforo.com/community/resources/conditional-statements.1604/ Upvote 0 Downvote
You can do that using the ad_forum_view_above_thread_list template and a conditional statement with an array of the relevant node IDs. Code: <xen:if is="in_array({$forum.node_id}, array(x, y, z))"> Content </xen:if> Point 26 here explains how to utilise the category ID: https://xenforo.com/community/resources/conditional-statements.1604/