Nov 05, 2021 7:58 pm
Dear wpforo developers,
I like simplified layout than others. But simplified layout don't show the post count of users. So, I am obliged to use extended layout. But I like simplified layout's appearance. Can you add this feature also to simplified layout?
10 Replies
Nov 06, 2021 6:25 am
you can customize the post.php from layout 2
/wp-content/plugins/wpforo/wpf-themes/classic/layouts/2
open the post.php from layout 2 with an Editor
search for
<div class="author-title"> <?php wpforo_member_title($member) ?> </div>
add after
<div class="author-posts"><?php wpforo_phrase('Posts') ?>: <?php echo intval($member['posts']) ?></div>
- Create / wpforo / folder in your current active theme folder.
- Create / layouts / folder in / wpforo / folder
- Create / 2 / folder in / wpforo / layouts / folder
- add the customize post.php in this folder
looks like this
wp-content / themes / your aktiv theme / wpforo / layouts / 2 / post.php