XF 1.3 Hiding permalink in every post

sinful

Member
For every post there is this #1, #2 #3, ... #n link next to the Quote and Reply buttons. Is there any safe edits to remove this # link effectively?

Thanks!
 
Sure. Edit the "post" template and either remove or comment out this line:

Code:
<a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="item muted postNumber hashPermalink OverlayTrigger" data-href="{xen:link posts/permalink, $post}">#{xen:calc '{$post.position} + 1'}</a>
 
Top Bottom