Notifications
Clear all

wpForo 1.x.x [Solved] How exactly to use the wpforo_message_bubble hook?

5 Posts
3 Users
3 Likes
577 Views
Posts: 42
Topic starter
(@needurhelp)
Trusted Member
Joined: 5 years ago

How exactly do I use the wpforo_message_bubble hook to disable to message bubble? I have to add some code to functions.php right?

4 Replies
2 Replies
 fawp
(@fawp)
Joined: 5 years ago

Reputable Member
Posts: 201
Posted by: @needurhelp

How exactly do I use the wpforo_message_bubble hook to disable to message bubble? I have to add some code to functions.php right?

Just adding this line in my theme functions.php seems to do the trick.

 

add_filter( 'wpforo_message_bubble', false ) ;

 

It will however turn all the bubble messages off - Check out this post.

 

(@needurhelp)
Joined: 5 years ago

Trusted Member
Posts: 42

@fawp oh it's that easy? Thanks!!

Alvina
Posts: 1869
Moderator
(@alvina)
Member
Joined: 4 years ago

Hi @needurhelp,

Yes, you should put this hook in your active WordPress theme functions.php file.

1 Reply
(@needurhelp)
Joined: 5 years ago

Trusted Member
Posts: 42

@alvina got it, thank you!