-
David Cavins replied to the topic Users can't reply to forum in the forum How-to & Troubleshooting 6 years, 11 months ago
You might try the bbPress support forum for more specific help. https://bbpress.org/forums/
-
David Cavins replied to the topic bp_activity_after_save & page refresh in the forum How-to & Troubleshooting 6 years, 11 months ago
Hi @danperis–
This is something that the devs are actively working on with that plugin and it’s a known issue. You can watch their progress here: https://github.com/boonebgorges/buddypress-group-email-subscription/tree/digest-queue
and maybe here: https://github.com/boonebgorges/buddypress-group-email-subscription/pull/100
-
David Cavins replied to the topic php warning: bp-activity-function in the forum How-to & Troubleshooting 6 years, 11 months ago
Hi HDcms-
Venutius has the right idea. You’re going to have to do some troubleshooting on your server, or set up a staging/dev server and try to recreate the problem, because the error log you’ve provided isn’t enough to help me. It’s not a know problem, for sure, so it must be soemthing peculiar to your setup.
I’d say that your MySQL server…[Read more]
-
David Cavins replied to the topic Remove rel="nofollow" for admin only? in the forum How-to & Troubleshooting 6 years, 11 months ago
Honestly, I’m not sure why you’d want to remove the nofollow rel. It’s (supposed to be) used by search engine crawlers and doesn’t affect the experience of a web site visitor, as far as I understand.
https://support.google.com/webmasters/answer/96569?hl=en -
David Cavins replied to the topic User registration based on a specific database of emails in the forum How-to & Troubleshooting 6 years, 11 months ago
Sure it’s possible, but you’d have to build it.
-
David Cavins replied to the topic Moving the group header and image in the forum How-to & Troubleshooting 6 years, 11 months ago
Hi I’m not exactly sure what you mean, but if you’re looking to get the profile image associated with a group or user, you can use the avatar-fetching function that BP uses in its templates,
bp_core_fetch_avatar()
:
https://buddypress.trac.wordpress.org/browser/tags/2.9.3/src/bp-core/bp-core-avatars.php#L99 -
David Cavins replied to the topic add link to Skype account to user profile in the forum Installing BuddyPress 6 years, 11 months ago
Hello, you can take advantage of User Extended Profiles to collect Skype information from your users, like their username or whatever.
-
David Cavins replied to the topic Buddypress Group Extension API Not Working in the forum Creating & Extending 6 years, 11 months ago
No, I don’t, but it’s an interesting idea.
We’ve been talking about adding a “bulk edit” facility to the group admin pane in wp-admin, but it’s pretty pie-in-the-sky at the moment.
-
David Cavins replied to the topic Profile in the forum How-to & Troubleshooting 6 years, 11 months ago
OK, well you’ll have to use whatever your members page slug is. In English, it’s sitename.com/members/
Just add a /me/ to the end of that.
It really looks like http://therapyas.com.br/members/me is working as expected. When I visit it, I’m redirected to a login form. If I could log in, then I’d end up at my user account. -
David Cavins replied to the topic User registration based on a specific database of emails in the forum How-to & Troubleshooting 6 years, 11 months ago
There’s no tool built to do that, if that’s what you’re asking.
-
David Cavins replied to the topic Profile in the forum How-to & Troubleshooting 6 years, 11 months ago
Use this handy shortlink:
http://therapyas.com.br/members/me
If the user is logged in, it will redirect to his or her profile. Else, it will send them to the login form on the way to their profile.
-
David Cavins replied to the topic Question in the forum How-to & Troubleshooting 6 years, 11 months ago
And that plugin was written by a reliable dev, Pippin Williamson, otherwise I would’t have suggested it. 🙂
-
David Cavins replied to the topic Allow new user to create or join a group on registration in the forum Installing BuddyPress 6 years, 11 months ago
This plugin is awfully close to what you’re trying to do. You might try modifying it to show groups in a drop down instead of the options offered:
I doubt that any plugin is going to support group creation at registration; group creation is a multi-step process, and is too much to…[Read more]
-
David Cavins replied to the topic Disable hidden groups completely in the forum How-to & Troubleshooting 6 years, 11 months ago
I’d say if you’re worried about people creating groups (which is a reasonable thing to worry about), your safest bet is to uncheck the checkbox “Enable group creation for all users” (or something like that) at wp-admin > settings > buddypress , and restrict group creation to site admins only. Then, add a group request form or similar, and you can…[Read more]
-
David Cavins replied to the topic Buddypress Group Extension API Not Working in the forum Creating & Extending 6 years, 11 months ago
Hi @ethanstein–
If you’re just looking for a replacement for BP Group Hierarchy, try this:
https://github.com/dcavins/hierarchical-groups-for-bpIf you’re wanting help with your specific use of the group extension api, you’ll need to post the code somewhere we can see it, like a Github gist or similar.
-
David Cavins replied to the topic User registration based on a specific database of emails in the forum How-to & Troubleshooting 6 years, 11 months ago
Yes, you can do any amount of extra validation on the hook
bp_signup_validate
.Something like this would probably do what you are trying to do:
[Read more]
add_action( 'bp_signup_validate', function registration_check_disallowed_usernames(){
$allowed_users = array( 'user1@domain.com', 'user2@domain.org' );
if ( isset( $_POST[ 'signup_username' ] ) && !… -
David Cavins replied to the topic Members Component has no Associated Pages in the forum How-to & Troubleshooting 6 years, 11 months ago
HI @baccoeur–
The best way to troubleshoot is to deactivate as many plugins as feasible, ideally leaving only BuddyPress active and using a common theme like Twenty Seventeen, to test the behavior. Then, check to see if the problem is resolved. Reactivate plugins and re-check to see which one is causing the conflict.
It only takes a few minutes…[Read more]
-
David Cavins replied to the topic Templates for Buddypress in the forum Creating & Extending 6 years, 11 months ago
BP adapts to any theme you use. If you’re looking to customize specific aspects, you can take advantage of the BP template hierarchy:
-
David Cavins replied to the topic Selecting role at registration in the forum Third Party Plugins 6 years, 11 months ago
Are you using BuddyPress member types, or something else?
-
David Cavins replied to the topic New user not receiving activation email in the forum How-to & Troubleshooting 6 years, 11 months ago
Hi, there are a lot of reasons that email fails. There’s a current issue with non-SSL domains and Outlook.com for instance: https://buddypress.org/support/topic/buddypress-emails-not-going-out/
If you’re not receiving any emails from your WordPress site, start by testing your site setup with this plugin:…[Read more]
- Load More
@dcavins
Active 5 days ago