XF 2.0 How to Hide Reply/Quote Button for First Post?

hadoi

Member
Hi, How to hide Reply/Quote button for first post?
Please let me know, thank so much!
 
Last edited:
Code:
Open the template : post_macros

Search for:
<xf:set var="$quoteLink">{{ link('threads/reply', $thread, {'quote': $post.post_id}) }}</xf:set>

Add down:
<xf:if is="!$post.isFirstPost()">

Search for:
data-quote-href="{{ link('posts/quote', $post) }}">{{ phrase('reply') }}</a>

Add down:
</xf:if>
 
ooh. can someone provide code to hide the reply button for the last post of the thread? thanks!

update. looks like isLastPost is also a thing. so made that work for me.
 
Last edited:
Top Bottom