There’s no such function.
You could try something like this in your theme’s functions.php:
`
function my_not_first_post() {
global $topic_template;
$current_page = $topic_template->pag_page – 1;
$post_position = $current_page * $topic_template->pag_num + $topic_template->current_post;
if ( 0 != $post_position ) {
// do your business here… eg.
echo ‘Re: ‘;
}
}
`
Then you can shove this function in topic.php:
“
Disclaimer: Untested.
Ray, what I am really trying to do with this is make the text on forums say “reply” on the second post and on
so I could put this in topic.php and would it work?
thanks!
Re-read the above post, I’ve edited it.
@r-a-y, the “Re:” shows up on the first post, which is not what I wanted.
I need it on the reply post…
thanks!
Code edited again; please recheck.
Great, now its on the the reply post.
Now if I could just remove the “said % ago” on the reply post, or visa versa it would be great. I could probably figure it out from your code above though
Thanks a ton!
What was the first code you posted? Because now I do want the text to show up on the first post!
As well as the question I asked above?
I’ve given you most of the snippet. It’s up to you to do the rest!
@r-a-y, sorry. I am just so determined to get my forum to say replied on second post, and from them on like: http://etivite.com/groups/buddypress/forum/topic/still-got-problems-with-the-latest-topics-widget/
Etivites. With your solution, it sort of goes there, but on the second page, it does not say “replied” anymore..
@bigjimmysisco – The code has been updated so the text shows on subsequent pages.