Replies
- Brajesh Singh on December 10, 2025 at 9:21 am in reply to: How to fix a issue with the recent visitors plugin #55932
Hi Alex,
Thank you for the reply.1. Our plugin already has the code to delete users(fix count) when a user is deleted. The only reason for inconsistent count would if if this plugin was deactivated when a user got deleted. The fucntion
visitors_delete_visits_on_user_deletedeleted from visitors table and user meta when a user is deleted.The only way to fix it would be to use custom code and run it once. would you like that?
2. I am sorry, I have tried it multiple times and the problem is limitation of BP Nouveau:-
To support pagination, We have the following choices when BP Nouveau template it active:-– Use custom members loop template, we are using the default template(letting BuddyPress choose if it comes from theme or plugin). If we did that, the plugin will cause layout issues with themes which have their own cusotm loops.
– Or load all visitors on the page(without pagination)
Pagination is a real problem with Nouveau if we try to be compatible with default and it needs changes upstream(in pagination code).
Would you like me to suggest minor template override to achieve it?
Regards
Brajesh - Brajesh Singh on December 6, 2025 at 9:54 am in reply to: [Resolved] Conditional Profile Fields for BuddyPress #55930
Hi,
Thank you for the question.Our conditional field plugin for BuddyPress/BuddyBoss does not support setting conditions based on date field. It is limited to the basic field types(no calculated value) currently.
Regards
Brajesh - Brajesh Singh on December 6, 2025 at 9:53 am in reply to: [Resolved] field sets User Profile Tabs Creator Pro #55929
Hi,
Thank you for the reply.The plugin goes way beyond the basic hiding of the profile data but I understand it may not be suitable for your use case.
We will process the refund within 2-4 working days and let you know.
Regards
Brajesh - Brajesh Singh on December 5, 2025 at 8:41 pm in reply to: create link for non logged in users #55926
Hi Thomas,
Thank you for the question.1. Is this question about generating current displayed users url? (You can use
bp_displayed_user_domain())If the goal is something different, please let me know with an example.
Regards
Brajesh - Brajesh Singh on December 5, 2025 at 8:35 pm in reply to: [Resolved] How to prevent media comments being added to the activity feed #55925
Hi Geoff,
Thank you for confirming.I am glad it worked.
Regards
Brajesh - Brajesh Singh on December 5, 2025 at 8:34 pm in reply to: How to fix a issue with the recent visitors plugin #55924
Hi Alex,
Thank you for your patience.Can you please upgrade to 1.8.9 and let me know if it works for you or not?
Regards
Brajesh Hi Lisa,
Thank you for the question.At the moment, there is no solution for BuddyBoss/BuddyPress. We are bringing this (parent account) as part of our upcoming community plugin in January.
Regards
Brajesh- Brajesh Singh on December 3, 2025 at 7:51 pm in reply to: How to fix a issue with the recent visitors plugin #55920
Thank you for your patience.
We are releasing an update within next 24 hours. It contains to changes:-
1. In future, on user delete, we delete related notifications.
2. For existing notifications(orphaned), It shows Deleted userRegards
Brajesh - Brajesh Singh on December 1, 2025 at 8:25 am in reply to: [Resolved] How to prevent media comments being added to the activity feed #55916
Hi Geoff,
Thank you for your patience.Please put this code in bp-custom.php
/** * Filters out media comment from activity stream. */ add_filter( 'bp_after_has_activities_parse_args', function ( $args ) { if ( isset( $_REQUEST['action'] ) && 'mpp_fetch_activity_media' == $_REQUEST['action'] ) { return $args; } if ( function_exists( 'mpp_is_single_media' ) && mpp_is_single_media() ) { return $args; } $filters = isset ( $args['meta_query'] ) ? (array) $args['meta_query'] : array(); $filters[] = array( 'key' => '_mpp_activity_type', 'compare' => '!=', 'value' => 'media_comment' ); $args['meta_query'] = $filters; return $args; } );It should resolve the issue. Please let me know if it works or not?
Thank you
Brajesh - Brajesh Singh on December 1, 2025 at 7:23 am in reply to: How to fix some problems with the MediaPress plugins #55915
Hi Alex,
Thank you for using the MediaPress.1. Can you please tell me where did you trigger the lightbox. If triggered from gallery page it will show prev/next. If triggered from activity, It will only show images from current activity.
2/3. This is a BuddyPress feature not MediaPress(we are using BuddyPress activity internally). BuddyPress Useses your settings for blog comments for this. Please visit Dashboard-> Settings->Discussion and look for “Enable threaded (nested) comments”. You will see the nesting leve there and control it.
4. It is in the BuddyPress’s activity section in the wp-admin. No, They will not work with wp discuzz.
5. Does the other plugin offer an API to see if a user is allowed or not? We have not tried blurring images(we can do it via css filter but that won’t protect against savvy users).
Regards
Brajesh