May 27, 2020 3:26 pm
Hi,
I did not do a forum with questions/answers, so!
Is it possible to delete stuff that is not used in the member's activity, in the profile? see my screenshot
if this is not currently possible, can you take this into consideration, because the new member who registers will find it strange.
Thanks
2 Replies
May 27, 2020 3:44 pm
open > wpforo > wpf-themes > classic > profile-home.php
and remove
<div class="wpf-statbox wpfbg-9">
<div class="wpf-statbox-body">
<div class="wpf-statbox-icon wpfcl-5"><i class="fas fa-question"></i></div>
<div class="wpf-statbox-value"><?php wpforo_print_number($questions, true) ?></div>
<div class="wpf-statbox-title"><?php wpforo_phrase('Questions') ?></div>
</div>
</div>
<div class="wpf-statbox wpfbg-9">
<div class="wpf-statbox-body">
<div class="wpf-statbox-icon wpfcl-5"><i class="fas fa-check"></i></div>
<div class="wpf-statbox-value"><?php wpforo_print_number($answers, true) ?></div>
<div class="wpf-statbox-title"><?php wpforo_phrase('Answers') ?></div>
</div>
</div>
<div class="wpf-statbox wpfbg-9">
<div class="wpf-statbox-body">
<div class="wpf-statbox-icon wpfcl-5"><i class="fas fa-comment"></i></div>
<div class="wpf-statbox-value"><?php wpforo_print_number($comments, true) ?></div>
<div class="wpf-statbox-title"><?php wpforo_phrase('Question Comments') ?></div>
</div>
</div>
but read the Documentation > Forum > Themes > Theme Customization