Notifications
Clear all

[Closed] Add time and messages to the Simplified template

3 Posts
2 Users
2 Reactions
576 Views
Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 6 years ago

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
Tutrix
Posts: 1496
(@tutrix)
Noble Member
Joined: 5 years ago

@hector

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>

 

Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 6 years ago

Wonderful, very good, I already fixed it.