Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

wpForo 1.x.x [Solved] User profile

4 Posts
2 Users
1 Reactions
1,750 Views
Posts: 73
Topic starter
(@srtalop)
Estimable Member
Joined: 7 years ago

Hi team,

Is it possible to hide from the user´s profile the "questions and answers" as we are not planning to use the question template? Thanks in advance.

3 Replies
Sofy
Posts: 5483
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 years ago

Hi @srtalop,

Please navigate to Dashboard > Forums > Settings > Styles admin page, put the following code in "Custom CSS Code" textarea, save it, delete all caches, do CTRL+ F5 on frontend:

.wpf-statbox.wpfbg-9:nth-child(4) {
display: none !important;
}

.wpf-statbox.wpfbg-9:nth-child(3) {
display: none !important;
}
Posts: 73
Topic starter
(@srtalop)
Estimable Member
Joined: 7 years ago

Hi, the "answers" tile was hidden, but not the "questions" one. Thanks.

Sofy
Posts: 5483
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 years ago

Hi srtalop,

The same principle for each item. In this case, CSS code to hide this item is:

.wpf-statbox.wpfbg-9:nth-child(5){
display: none !important;
}

You can find all classes by pressing F12 on the browser and opening Chrome or Firefox Console: