KawaiiHannah Active member Nov 24, 2017 #1 I want to remove the This Post is Closed from the top and only have it at the bottom Spoiler: Top
DL6 Well-known member Nov 24, 2017 #2 In thread_view template find: Code: <xf:if is="!$thread.discussion_open"> <dd class="blockStatus-message blockStatus-message--locked"> {{ phrase('not_open_for_further_replies') }} </dd> </xf:if> and replace with: Rich (BB code): <xf:if is="!$thread.discussion_open AND $wrapperClass != 'block-outer'"> <dd class="blockStatus-message blockStatus-message--locked"> {{ phrase('not_open_for_further_replies') }} </dd> </xf:if> Upvote 0 Downvote
In thread_view template find: Code: <xf:if is="!$thread.discussion_open"> <dd class="blockStatus-message blockStatus-message--locked"> {{ phrase('not_open_for_further_replies') }} </dd> </xf:if> and replace with: Rich (BB code): <xf:if is="!$thread.discussion_open AND $wrapperClass != 'block-outer'"> <dd class="blockStatus-message blockStatus-message--locked"> {{ phrase('not_open_for_further_replies') }} </dd> </xf:if>