sinful Member Jul 29, 2014 #1 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!
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!
Ridemonkey Well-known member Jul 29, 2014 #2 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> Upvote 0 Downvote
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>
sinful Member Jul 29, 2014 #3 Thanks @Ridemonkey ! Any idea if there is a css edit to go about this? Upvote 0 Downvote
P Paul B XenForo moderator Staff member Jul 29, 2014 #4 Add to EXTRA.css Code: .message .publicControls .item.hashPermalink { display: none; } Upvote 0 Downvote