Replies
Hi Carl,
Thank you for purchasing from us.Yes, the plugins are compatible and BuddyBoss is right about it. The profile type is applicable to BuddyBoss.
Are you using profile type or the profile field which is named profile type?
Can you please link me to a screenshot showing your conditions?
Thank you
BrajeshHi Eric,
Thank you for your patience.1. For the notice message, Please remove the content from this page that you added earlier
https://pastebin.com/fkddq82q2. and add this one(It is a replacement for that class)
https://pastebin.com/sKE0bvh2That will add notice above the form.
There is one limitation though. If a user submits a form, they will still see the generic message.
2. For the Taxonomy list, Please add this code to your bp-custom.php/functions.php
and then put it below
(new BBL_Custom_Tax_Lister('category', 'Categories') )->setup(); // first part is the taxonomy slug, second part is optional label. (new BBL_Custom_Tax_Lister('post_tag', 'Tags') )->setup();Hope that helps.
Regards
BrajeshHi,
Welcome to BuddyDev support forums.
With BuddyPress 12.0, It is not feasible as the registration page is not actually a page anymore.You may try and and check with BuddyBuilder to see if they provide a way.
https://wordpress.org/plugins/stax-buddy-builder/Regards
Brajesh- Brajesh Singh on March 12, 2024 at 3:40 pm in reply to: [Resolved] A Couple of issues with current MediaPress #52143
Hi Frank,
Thank you for reporting the issue.The issues are caused by BuddyPress 12.0 routing change and not the new WordPress or theme.
If you enable BP Classic, all the above issues will be resolved . @ravisharma is working on adapting plugin to new routing structure of BuddyPress 12.0 and we hope to have update in near future that won’t need BP classic plugin to work.
Please try installing and using BP classic and let me know if that works or not?
Regards
Brajesh Hi Eric,
Thank you for your patience.
I am sorry to keep it delaying. It will be available by day end tomorrow.Regards
BrajeshHi Axel,
Thank you for your question.
I am sorry, there are no ready made solutions currently achieve it.Regards
Brajesh- Brajesh Singh on March 9, 2024 at 9:44 pm in reply to: [Resolved] “Extended Friendship Request” working on BuddyBoss theme and platform #52131
Hi,
Thank you for confirming.
yes, It works with BuddyBoss platform and is supported. In case you find any issue with it, we will support.Regards
Brajesh - Brajesh Singh on March 9, 2024 at 9:03 pm in reply to: Does “BuddyPress Rate Limit User Activity” work with BuddyBoss theme? #52127
Hi,
Welcome to BuddyDev support forums.This plugin is not supported for BuddyBoss platform. It may work(You can access the settings from Dashboard->Settings->BuddyPress Activity Rate Limiter) but we haven’t tested it for BuddyBoss.
Here is a list of all BuddyBoss supported premium plugins
https://buddydev.com/plugins/category/buddyboss-platform-premium-plugins/For future clarification, all our BuddyBoss supported plugins will have a “Supports:” section in the plugin download/version information section on single plugin page and It specifies BuddyBoss platform.
Regards
Brajesh- This reply was modified 2 years, 5 months ago by
Brajesh Singh.
- This reply was modified 2 years, 5 months ago by
Hi Jordan,
Thank you for purchasing from us.The plugin does not have its own login page. It integrates with default WordPress login page as well as login page provided by BuddyPress, BuddyBoss, WooCommerce, UserWP, User Registration, Ultimate Member, WP Members, Elementor Essentials addon login, Login/Signup Popup plugin and others.
You can use any of the existing custom login plugin and let us know. We can test and ensure that the restrictions work with them.
Regards
Brajesh- Brajesh Singh on March 6, 2024 at 5:05 pm in reply to: [Resolved] how can I replace the buddypress registration with WooCommerce registration #52106
Hi Gisela,
Thank you for the question.Please put this in your bp-custom.php
// Disable BP registration add_filter( 'bp_get_signup_allowed', function () { return false; } ); // map register url. add_filter( 'bp_get_signup_page', function ( $url ) { if ( function_exists( 'wc_get_page_permalink' ) ) { return wc_get_page_permalink( 'myaccount' ); } return $url; } );This should disable BuddyPress registration page and redirect to WooCommerce My account page for registration.
Regards
Brajesh