Notifications
Clear all

[Solved] Signatures not appearing on posts for some users

5 Posts
3 Users
0 Reactions
265 Views
Posts: 4
Topic starter
(@notquitewrite)
Active Member
Joined: 4 months ago

I'm having an issue where signatures do not appear, seemingly for members with only a few posts. 

I've tried adding the filter listed here, but it generates an error and breaks some threads: User Signatures not showing on posts – How-to and Troubleshooting – wpForo Support Forum

This seems to be the case for another user: Forum Members Sig Not Viewable – Bug Reports – wpForo Support Forum

Can you please confirm whether the below filter is still correct? Or is there another updated method of ensuring signatures are visible on all posts regardless of forum reputation. My forum has closed membership so spam protection is not a concern for me.

add_filter('wpforo_min_rating_level_for_signature', 0);

 

4 Replies
Posts: 26
 Trey
(@trey)
Eminent Member
Joined: 10 months ago

Did you ever hear from anyone on this? I am having the same issue, and that snippet DOES NOT WORK (despite seeing them suggest it in a couple of different threads)

Reply
Sofy
Posts: 5233
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Yes, you can use the code. 

Reply
1 Reply
 Trey
(@trey)
Joined: 10 months ago

Eminent Member
Posts: 26

@sofy I already tried the code and it broke multiple pages. The signatures used to show up and now they don't, I'm guessing since the last update. More specifically, it altered the entire page's theme, did not display any signatures, and broke all functionality (scrolling, links were dead, etc.)

Reply
Posts: 26
 Trey
(@trey)
Eminent Member
Joined: 10 months ago

For those having this issue, I came back here to share the alternate snippet @sofy sent me in another thread that seems to have done the trick.

The (good) Snippet:

add_filter('wpforo_min_rating_level_for_signature', function(){ return 0; });

The other thread:

https://wpforo.com/community/general-forums-bug-reports/signatures-min-post-short-code-breaks-pages/

Reply