Notifications
Clear all

[Solved] 2 smaller Problems/Question with Profile and Likes

6 Posts
3 Users
4 Reactions
257 Views
Posts: 3
Topic starter
(@pablo)
Active Member
Joined: 5 months ago

First I want to thank you for you awesome boardsoftware, just migrated from anspress, what a huge difference.

I have 2 smaller problems i dont know how to change.

1. how can i change the infos in profile and how is it counted? I dont want to show all stats, because i think they are not all relevant. Like for what is blogpost and blog comments? What is the differnce between all the like stats?

2. when someone likes a post, there is only shown: user x reacted. How can i display if the user liked or diskliked?

thank you for your help!

 

Paul

 

5 Replies
Sofy
Posts: 4900
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Hi Paul,

If you want to hide the sections, please follow the solution provided by Robert here: 

https://wpforo.com/community/how-to-and-troubleshooting-2/disabling-specific-statistics-displaying/#post-10142

2. when someone likes a post, there is only shown: user x reacted. How can i display if the user liked or diskliked?

I'm sorry, but the information about like/dislike will be only displayed for the post owner in the notification section. We'll show more information on the post screen in the near future. Currently, there is no option.

Tutrix
Posts: 1493
(@tutrix)
Noble Member
Joined: 5 years ago

@pablo 

Robert's post is from 2017 and no longer up to date.
It is missing /* Received Dislikes */, which causes the following to be hidden incorrectly

The correct child order looks like this

/* Posts */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(1){display:none;}

/* Topics */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(2){display:none;}

/* Questions */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(3){display:none;}

/* Answers */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(4){display:none;}

/* Question Comments */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(5){display:none;}

/* Liked */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(6){display:none;}

/* Received likes */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(7){display:none;}

/* Received Dislikes */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(8){display:none;}

/* Rating */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(9){display:none;}

/* Blog Posts */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(10){display:none;}

/* Blog Comments */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(11){display:none;}
Posts: 3
Topic starter
(@pablo)
Active Member
Joined: 5 months ago

Hello, thanks for your help to you both. Worked.

Btw: is there also a workaround for the missing spaces between name and „reacted“ where its displayed who reacted.

 

2 Replies
Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1493

@pablo 

This issue exists since the update to version 2.3.5 and will surely be fixed in the next update.
Until then, you can use this CSS code

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-footer .reacted-users a{margin:0 4px;}
(@pablo)
Joined: 5 months ago

Active Member
Posts: 3

@tutrix thank you