Notifications
Clear all

Synch message does not go away!

8 Posts
3 Users
1 Likes
342 Views
Posts: 274
Topic starter
(@danniee)
Reputable Member
Joined: 4 years ago

After updating to 2.03, the synch message does not go away even after I finnish synching and closing the message.

Also, how do I remove thumbs down option?

 

7 Replies
Chris
Posts: 3528
Admin
(@chris)
Support Team
Joined: 2 years ago

wpForo doesn't have option to disable dislike button but you can hide it and use the main button for Like/Unlike

#wpforo #wpforo-wrap .wpf-popover-content {
    display: none !important;
}
Reply
Posts: 274
Topic starter
(@danniee)
Reputable Member
Joined: 4 years ago

Ok thanks. It's possible all my custom css disappeared after the update. Hope the synch message can be fixed too. Cheers.

Reply
5 Replies
Chris
Admin
(@chris)
Joined: 2 years ago

Support Team
Posts: 3528

@danniee,

Can you provide a screenshot of the message?

Reply
(@danniee)
Joined: 4 years ago

Reputable Member
Posts: 274
Robert
Admin
(@robert)
Joined: 7 years ago

Support Team
Posts: 9988

@danniee,

That info box can be disabled using the following hooks code. Just put it in your active WordPress Theme's function.php file or install Code Snippets plugin and add new PHP snippet:

add_filter('wpforo_profile_synchronization_notice', '__return_false');
Reply
(@danniee)
Joined: 4 years ago

Reputable Member
Posts: 274

@robert is that the correct approach to this though by adding more code to the functions file? It only appeared after the most recent update. Maybe more people will have issues with this? Cheers.

Reply
Chris
Admin
(@chris)
Joined: 2 years ago

Support Team
Posts: 3528

@danniee,

Please update to 2.0.4, if you still see the info box then you should use that hook code, it's the only and correct approach.

Reply