Notifications
Clear all

wpForo 1.x.x [Solved] Simplfied Forum: Where is the user reg date & post count?

3 Posts
2 Users
3 Reactions
665 Views
Posts: 49
Topic starter
(@novedddd)
Trusted Member
Joined: 2 years ago

I'm using the "simplified" theme for my forums. However, I noticed that for whatever reason, there's not an option to include two basic pieces of info: the user's registered date and their post count. These two items are included automatically in the extended and threaded themes, but not for the simplified theme?

How do you add this?

2 Replies
Tutrix
Posts: 1357
(@tutrix)
Noble Member
Joined: 4 years ago

@noved

read this post > https://wpforo.com/community/postid/59602/

the code for reg date

 <div class="wpf-author-joined"><i class="fas fa-calendar-alt"></i> <?php wpforo_phrase('Joined') ?>: <?php wpforo_date($member['user_registered']); ?></div>

 

1 Reply
(@novedddd)
Joined: 2 years ago

Trusted Member
Posts: 49
Posted by: @tutrix

@noved

read this post > https://wpforo.com/community/postid/59602/

the code for reg date

 <div class="wpf-author-joined"><i class="fas fa-calendar-alt"></i> <?php wpforo_phrase('Joined') ?>: <?php wpforo_date($member['user_registered']); ?></div>

 

Thank you!!