How to reset the license?

When you want to change the licensed domain name, but old website is already deleted, you might need to reset your license. You can do it at your customer account dashboard, which you can find at that link: https://users.freemius.com/ As…

Read more

Disabling users link to be clickable

Disabling users link to be clickable in messages interfaces. Available since 1.9.9.121 version. Add this code snippet to your child theme function.php file or using Code Snippets plugin for example to disable messages viewer. add_filter('bp_better_messages_user_url', function ($url, $user_id){ return false; }, 20,…

Read more

Disable messages viewer

Add this code snippet to your child theme function.php file or using Code Snippets plugin for example to disable messages viewer. add_action( 'admin_menu', function(){ remove_submenu_page( 'bp-better-messages', 'better-messages-viewer' ); }, 20 );

Read more

Ending call dynamically (WebSocket version)

This example of function which allow to end the currently ongoing call dynamically $thread_id = 34; $message = "Your call is end"; //Additional message to show to users (leave empty to not show message) BP_Better_Messages()->premium->endCall( $thread_id, $message );

Read more

Additional on site notifications

Additional on site notifications shows additional realtime notifications on various events from BuddyPress events component. For example on new friend request user will receive notification instantly. Supported events BuddyPress Friends Friendship request Friendship accepted BuddyPress Groups New membership request Membership…

Read more

GIPHY Production Requirements

When you are ready to move to GIPHY production key, they require you to have their copyright, its easy to add with following CSS: .bpbm-gif:before { position: absolute; content: 'GIPHY'; bottom: 5px; right: 5px; background: #000000; padding: 0px 6px; color:…

Read more

WCFM

Integration with WCFM plugin allows to connect buyers with vendors using private messages system. https://www.youtube.com/watch?v=nuceECo08P4   Messages locations should be configured in plugin settings to be shown at WooCommerce account page or any other page: You can download addon under…

Read more

End User License Agreement

BP Better Messages End User License Agreement Effective as of Nov 29, 2017 To help you understand the EULA (End User License Agreement), we’ve prepared a bullet-point list that summarizes some of the main ideas (yes, including rights, obligations, liabilities, and…

Read more
0