Hello,
I have a specific situation where I need to insert a post in topic at a specific position in the posts list.
This post should go in position #2 in a topic that has 9 posts.
What I have done is the following:
– create a new post in the topic in the forum
– change the post_index in wp_sfposts table for my new post, change the following posts according (older post 2 becomes 3, 3 becomes 4 and so on)
– change post_count and post_id in wp_sftopics table to reflect my new post change
Unfortunately, my “inserted post #2” stays at the end of the post list, like it’s the newest post. (I also tried changing post_date for my post to insert in wp_sfposts table, it did not help)
What else would be required to move it to second post position in the topic posts list ?
Thank you.