Apr 03, 2021 11:56 am
Hello community.
The Extended template shows the time that has been registered and the messages that a certain user has:
And in the Simplified template this information does not come out:
I would like to display user time and messages in the Simplified template.
How do i do it?
Thanks for your help.
2 Replies
Apr 03, 2021 12:17 pm
follow this post Display number of posts under the avatar of the person posting
these two codes you need
<div class="author-joined"><?php wpforo_phrase('Joined') ?>: <?php wpforo_date($member['user_registered']); ?></div> <div class="author-posts"><?php wpforo_phrase('Posts') ?>: <?php echo intval($member['posts']) ?></div>
Apr 03, 2021 1:06 pm
Wonderful, very good, I already fixed it.