Replies
- Brajesh Singh on January 8, 2022 at 10:52 pm in reply to: [Resolved] Filter Only Videos from Buddypress Activity #42456
Hi Cromacio,
Thank you for the reply.1. In order to filter the activity, we need some way to identify the videos( either via component or type or any other attribute of the activity, search by string may work but does not feel the right approach )
2. Please change this line
if( ! bp_is_activity_directory() || ! is_user_logged_in() ) { return $args; }to
if( ! bp_is_activity_directory() || ! is_user_logged_in() || is_super_admin() ) { return $args; }That will avoid filtering for super admins.
Regards
Brajesh - Brajesh Singh on January 8, 2022 at 10:50 pm in reply to: [Resolved] Turn activity featured image into clickable links #42455
Thank you. I will do in couple of days as I am going to rework on BuddyBlog Pro and will need those flexibility.
Regards
Brajesh Hi Tosin,
Thank you for the suggestions and your trust in our work.We do have plans to allow our members monetize their networks. I am not sharing much details as we have a lot to work currently.
Please keep a watch over our releases. There will be a lot of useful plugins coming from February this year(In January, we should have couple of major updates to existing plugins).
Thank you
BrajeshHi Bill,
Thank you for the reply.I am sorry, Did we advertise or misguide you that the pro plugin offers friends of friends feature?
I do not know where did you see that but we did not advertise that feature.is there any issue using that part from the free plugin for now? Both are supported by us and in future, all we will do is merge the free in the pro while using pro’s ui.
We don’t have any immediate plan to add it and we are hoping to rewrite the whole suggestions pro for supporting more free form suggestions list(random, xprofile, member type, fixed ids and a few other things). This will probably come around mid February.
Regards
Brajesh- Brajesh Singh on January 8, 2022 at 6:55 pm in reply to: [Resolved] Turn activity featured image into clickable links #42448
Hi Tosin,
Thank you for the question.At the moment, there is no good way to achieve it. This needs to go into BuddyPress core as an enhancement. The image extraction and embedding is handled by BuddyPress but there is not an efficient way to change this. It will be a simple change in BuddyPress core. Please suggest at BuddyPress trac (or I will suggest it for the future).
Regards
Brajesh - Brajesh Singh on January 8, 2022 at 6:53 pm in reply to: Custom WooCommerce endpoint using BuddyCommerce #42447
Hi The WP Makers,
Welcome to BuddyDev support forums.The handling of an end point has 4 steps:-
1. Registering the end point as one of the BuddyPress tabs (create nav/sub nav on bp_setup_nav).
2. Tuning environment on that page to behave like mapped WooCommerece page(may need updating some query variables)
3. Showing the content by adding Woocommerce shortcode on that page.4. If the shortcode contains some form, you will need to add a handler for the submitted content.
I will link to the code showing these steps.
1. Here is the code showing the nav registratons.
https://github.com/buddydev/buddycommerce/blob/master/src/core/users/handlers/class-bc-tabs-helper.php2. Here is an example showing how we tell WooCommerec which screen it is
https://github.com/buddydev/buddycommerce/blob/master/src/core/users/handlers/class-bc-address-screen-handler.php3. Here is a class implementing the screen functions used in the previous step
https://github.com/buddydev/buddycommerce/blob/master/src/core/users/class-bc-screens.phpI hope that helps.
Regards
Brajesh - Brajesh Singh on January 8, 2022 at 6:39 pm in reply to: Discussion Topics are not being deleted on Moderation #42446
Hi Debbie,
Hope you are doing well.I am sorry, I will be needing 1-2 more days and will be able to publish on Monday. I am facing a minor issue with BuddyBoss platform on my local dev and it seems it will need a little bit more time.
I am very sorry for this delay.
Brajesh
- Brajesh Singh on January 7, 2022 at 10:44 pm in reply to: Discussion Topics are not being deleted on Moderation #42440
Hi Debbie,
Thank you.I have checked and I can see the issue.
I will update you tomorrow again on this.
Regards
Brajesh - Brajesh Singh on January 7, 2022 at 10:40 pm in reply to: Activating Profile Visibility Manager Hides users from Group Organizers #42439
Hi David,
Thank you for the patience.Please upgrade to 1.9.2. It should be fixed now.
Regards
Brajesh - Brajesh Singh on January 7, 2022 at 8:37 pm in reply to: BuddyPress Auto Join Groups – not updating on profile update #42437
Hi David,
If you used the plugin from github, It will sync user’s daily(removing any extra groups when the cron job is run).If you use the custom code, It will do it instantly. In fact, I think we should enable this as an option in the plugin. my worry is What happens when a user matches multiple lists? Since we are processing list matching sequentially, only the last list takes effect. That’s the reason we have avoided adding it as an option in the plugin screen.
Regards
Brajesh