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.

 

[Closed] Synch message does not go away!

8 Posts
3 Users
1 Reactions
1,009 Views
Posts: 446
Topic starter
(@danniee)
Honorable Member
Joined: 6 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: 3611
(@chris)
Famed Member
Joined: 4 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;
}
Posts: 446
Topic starter
(@danniee)
Honorable Member
Joined: 6 years ago

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

5 Replies
Chris
(@chris)
Joined: 4 years ago

Famed Member
Posts: 3611

@danniee,

Can you provide a screenshot of the message?

(@danniee)
Joined: 6 years ago

Honorable Member
Posts: 446
Robert
Admin
(@robert)
Joined: 9 years ago

Support Team
Posts: 10616

@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');
(@danniee)
Joined: 6 years ago

Honorable Member
Posts: 446

@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.

Chris
(@chris)
Joined: 4 years ago

Famed Member
Posts: 3611

@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.