XF 2.1 Post Position Links

osieorb18

Active member
It's possible that this should be an add-on request.

So one of the biggest frustrations that often comes up for people in my experience in using Xenforo is that posts cannot be linked to by post position. Given that post.position is a known attribute, is there no way through templating to make links to posts via post.position possible?

For example, making a function via BBCode:

Code:
[p]1[/p]

that links to post 1 of this thread. (URL: https://xenforo.com/community/threads/post-position-links.180766/post-1427750)

That would create something similar to the regular corner-of-the-post links of:

Code:
<a href="{{ link('threads/post', $thread, {'post_id': $post.post_id}) }}" rel="nofollow">
                                        #{{ number($post.position + 1) }}</a>

... Just placeable in any post and directing to any post, within a thread.
 
Top Bottom