Hey Buddydev team,
I hope you are all well. I’ve found that the message icon button which is on the listed members in the users circles doesn’t appear to work. When you click on it nothing happens. This is happening on Buddyboss.
Thanks in advance,
- This topic was modified 3 years, 9 months ago by Bernard Michaels.
Hello Bernard,
Sorry for the delayed reply. Please use the following code and let me know if it works or not:
/** * Get member id. * * @param int $id Member id. * * @return int */ function buddydev_circle_get_member_id( $id ) { if ( bcircles_is_circles_page() ) { return bp_get_member_user_id(); } return $id; } /** * Apply filter before circle loop. */ function buddydev_before_circle_loop() { add_filter( 'bp_displayed_user_id', 'buddydev_circle_get_member_id', 11 ); } /** * Remove filter after circle loop. */ function buddydev_after_circle_loop() { remove_filter( 'bp_displayed_user_id', 'buddydev_circle_get_member_id' ); } add_action( 'before_circle_users_loop', 'buddydev_before_circle_loop' ); add_action( 'after_circle_users_loop', 'buddydev_after_circle_loop' );
Regards
RaviHi Ravi,
Thank you for your message. This fix appears to work on Buddyboss, thank you.
Warm regards,
Bernard
I am experiencing this same issue. Has this been resolved without using custom code? I do not know how to edit the code. Please advise.
Hi Philip,
Thank you for using the plugin. I am sorry for the issue. We will add the above code to the plugin and it will run automatically on BuddyBoss sites.Please allow us 24 hours to push the release.
Regards
Brajesh
You must be logged in to reply to this topic.