Forum Replies Created
-
Hi Marco,
I’m the author of the plugin you linked above, and the plugin doesn’t help much with BP Nouveau, but I’m not seeing any fatal errors. Can you share your setup? I’m using WP 6.6.2 and BP 14.2.1 with Legacy or Nouveau template packs and the twenty twenty-four theme.
Thanks!
We’re always happy to hear about features that are important to people. Thanks for your post!
Thank you for reporting this issue. The fix is in this commit: https://buddypress.trac.wordpress.org/changeset/13320
We’ll release a maintenance release to address it, but if you need it fixed now, add the conditional in the commit is the solution.
This issue only affects admin users using the Pending Memberships screen, so the problem shouldn’t cause any problems for your members. It also appears that it doesn’t break the membership requests workflow, as it occurs after the appropriate emails are sent.
Thanks again for the reports!
Will this get you close? https://buddydev.com/introducing-buddypress-simple-google-map-plugin/
This plugin can help with your wish: https://wordpress.org/plugins/buddypress-group-email-subscription/
It sounds like Member Types could solve your problem: https://codex.buddypress.org/developer/member-types/
You can find their activity items via the db. Find their items by
SELECT * FROM
wp_bp_activityWHERE
user_id= 'USER_ID_YOU_WANT_TO_FIND'
Comments and posts should be delete-able via the WP Admin interface for those items.
If you have database access, take a look in
wp_bp_activity
. This query will find activity item comments:
SELECT * FROM
wp_bp_activityWHERE
type= 'activity_comment'
Thank you for the report. Can you enable the plugin Query Monitor to see if it can help trace the source of the query? It can often identify the caller, which would be a great help. Example output: https://imgur.com/xK6V63V
Thanks!
It sounds like you could have a theme conflict. Your screenshot is gone, though, so I am not sure.
BP uses the WP login, so you should be able to log in to WP as before. Just visit your-site/wp-login.php
Here’s one way to do that: https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
Hi, it sounds like you are clicking on the navigation item to get you to the edit screen. Below the form, look for a button labeled “Save Changes”.
Thanks @windhillruss for your feedback. I’m not able to test the Beehive theme (because it is a paid theme). It sounds like the theme has its own version of
register.php
which will need to be updated. Can you have a look and let me know if the theme does contain aregister.php
file?We’ve introduced a new helper function,
bp_allow_access_to_registration_pages()
, to figure out whether the registration page is accessible that the developers will want to start using (if BP>=v10):
https://github.com/buddypress/buddypress/blob/master/src/bp-members/bp-members-template.php#L2960Regarding the login form, here are some examples of the filters we used to add “request membership” links to the various WP login forms: https://github.com/buddypress/buddypress/commit/2099c877aaa539439b2c6255db6872af2db85a11
Thanks again for your testing! It’s greatly appreciated! If the Beehive devs care to share some of their code to a Trac ticket, I’d be happy to take a more specific look.
Thanks everyone for your feedback.
@gregthebuzz Are you running the MyCred plugin also?
@firefliespilots @vivekmathur1969 Thanks very much for identifying the issue with MyCred. It appears that MyCred is running some actions at a very early action (init 5
) that happen before the BP Members Component is initialized. The invitations table name (along with a few other members component table names) are not determined at that point (they can be filtered by plugins). So I’m not sure what to do about that.
@epgb101 Thanks for chasing down your issues and recording the answers in this thread. That is very helpful.
@wunderpuffe Thanks for your feedback. Yes, it looks like Youzer/Youzify’s template branch logic doesn’t include support for the invitations screens.
@shahriar83 Are you also using the Youzify plugin?I think this Codex page will answer your questions:
If you want to change the template used, check out “customize email template.”
You can add a custom translation using something like Loco Translate. It sounds like the issue is in the translation string.
There is no easy way to do this, but it’s something we’d like to make possible in some future version of BP.
You can hide it using CSS, like:
.buddypress-wrap .subnav-filters .feed { margin-right: 0; display: none; }
BuddyPress uses the WP “forgot password” system, so I’d start by looking to see if MemberPress attempts to handle that function.
To start with, try flushing your permalinks. To do so, visit the permalinks settings screen and hit “save.”
It does sound like a complicated setup, frankly. Could you get the result you need by just using MP and bbPress?
Hi, You can skip the email activation step by adding the following filter to one of your php files:
add_filter( 'bp_registration_needs_activation', '__return_false' );
There are lots of things that could cause that, but I’ve experienced that when part of the site was using http:// and part was using SSL (https). The cookies that WP uses to log you in are protocol specific, so make sure your whole site is one or the other.
It sounds like WordPress doesn’t think he’s logged in anymore. I’d start by ensuring that he is logged in.
Hi @spacerust-
CSS is cumulative, so you can add styles to any CSS file that is loaded and they’ll be respected if they win in the specificity race. https://css-tricks.com/specifics-on-css-specificity/
Hello, it looks like you’re using another plugin to manage logins that might have something like “uwp” as its name. Try disabling that plugin and seeing if the site works as expected.