Replies
- Brajesh Singh on March 11, 2022 at 8:19 am in reply to: BuddyPress Groups Tabs Creator Pro – Events Calendar shortcodes not working #43779
Hi Forum one,
Thank you for using our plugin.Please contact The Events Calander Pro team and ask them if the shortcode “[tribe_events_list]” can be used outside the post/page screen(e.g in the sidebar of archive page).
We do call do_shortcode, so it seems the plugin is not finding that shortcode as registered one.
Regards
Brajesh - Brajesh Singh on March 10, 2022 at 7:24 am in reply to: [Resolved] Group Tabs Pro: Tab Visibility for Site Admins #43772
Thank you Dianne
Regards
Brajesh - Brajesh Singh on March 10, 2022 at 7:23 am in reply to: [Resolved] Auto Activate Auto Login – Redirects #43771
Hi Dianne,
Thank you for using it. I am glad it worked.Regards
Brajesh - Brajesh Singh on March 9, 2022 at 12:09 pm in reply to: BuddyPress Block Users – Restricting Blocked Users through REST API #43750
Hi Nifty,
Please try putting this in your bp-custom.php// filter blocked and blocked by user ids. add_filter( 'bp_rest_members_get_items_query_args', function( $args ) { if ( ! is_user_logged_in() || is_super_admin() || ! function_exists( 'bublock_get_blocked_user_ids_for_user' ) ) { return $args; } $excluded_users = isset( $args['exclude'] ) ? wp_parse_id_list( $args['exclude'] ) : array(); // All user ids blocked by me. only if blocker can not list blocked user profile. $blocked_users = bublock_get_blocked_user_ids_for_user( bp_loggedin_user_id() ); if ( $blocked_users ) { $excluded_users = array_merge( $excluded_users, $blocked_users ); } // All user ids who has blocked logged in user only if blocked user profile not available. $blocked_by_user_ids = bublock_get_blocked_by_user_ids_for_user( bp_loggedin_user_id() ); $excluded_users = array_merge( $excluded_users, $blocked_by_user_ids ); if ( $excluded_users ) { $args['exclude'] = array_unique( $excluded_users ); } return $args; });Let me know if it works for you or not? This will filter out the blocked users/blocked by users.
Regards
Brajesh - Brajesh Singh on March 9, 2022 at 11:45 am in reply to: Auto assign user badge on a fulfilled requirement #43749
Hi Iken,
Please try contacting via the forums. Most of the developers(including us) are more comfortable with forum reply as it allows to manage the questions/issues in better way.For a 3rd party plugin, we will need to spend a lot more time going through them before assisting. That’s why hour policy is to limit the support to BuddyPress and our own plugins unless we specify compatibility.
I hope you understand that.
Regards
Brajesh - Brajesh Singh on March 9, 2022 at 11:03 am in reply to: Mediapress with Buddypress – User Galleries not uploading images (jpg) #43748
Hi Jerise,
Please visit Dashboard->mediaPress->Tools and share me the debug details.Thank you
Brajesh - Brajesh Singh on March 8, 2022 at 5:13 pm in reply to: [Resolved] Shortcode for BuddyBlog & Buddyboss #43743
Hi Audra,
Thank you for the reply. I am glad that it worked.Regards
Brajesh Hi Lisa,
I am sorry, we haven’t released the plugin. The plugin will be available very soon(probably mid next week or early).We had to change the whole upload experience to accommodate comment attachment and It is still a work in progress as we rewrote the whole javascript part for the MediaPress. I am expecting it to have complete by this weekend and then spend 3-4 days next week testing with various themes/browsers before finally pushing it.
Also, we had to drop the internal data model change(it won’t have any effect on UI), we will have it in 2.0 . That change will allow us to have uploads without any gallery.
Regards
Brajesh- Brajesh Singh on March 8, 2022 at 5:08 pm in reply to: Auto assign user badge on a fulfilled requirement #43741
Hi Iken,
Please contact GamiPress support for assistance with it. They are in a lot better position to assit you quickly.Regards
Brajesh - Brajesh Singh on March 7, 2022 at 9:15 pm in reply to: BuddyPress Block Users – Restricting Blocked Users through REST API #43730
Hi Nifty,
Thank you for using the plugin.There is no way to know if the request is for profile view or directory while using REST API.
We can not apply the restrictions on the single profile view without co-ordination from the client app. For the listing, I will try to enforce it on members query and update you in next couple of days.
Regards
Brajesh