Notifications
Clear all

wpForo 1.x.x [Closed] Forum Statistics: Our newest member

2 Posts
2 Users
2 Likes
2,152 Views
Posts: 1
Topic starter
(@psibertek)
New Member
Joined: 7 years ago

Is there anyway to hide the Forum Statistic section "Our newest member" without hiding the entire Forum Statistic section ?

1 Reply
Robert
Posts: 10503
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi PsiberTek,

I'm sorry but there is no a stand-alone way to generate this information.

This is the PHP code for template files. If you're familiar with PHP and WP/wpForo Template files you can use this code:

<?php global $wpforo; $stat = $wpforo->statistic();  ?>
<p class="wpf-stat-other">
<span><i class="fa fa-user-plus"></i> <?php wpforo_phrase('Our newest member') ?>: <a href="<?php echo esc_url($stat['newest_member_profile_url']) ?>"><?php echo esc_html($stat['newest_member_dname']) ?></a></span>
</p>