Notifications
Clear all

[Solved] Activity member in profile

3 Posts
2 Users
1 Likes
706 Views
Posts: 19
Topic starter
(@awake-2)
Eminent Member
Joined: 4 years ago

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

@awake-2

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

 

Posts: 19
Topic starter
(@awake-2)
Eminent Member
Joined: 4 years ago

Thanks @tutrix 👍