-
David Cavins replied to the topic User registration based on a specific database of emails in the forum How-to & Troubleshooting 8 years, 2 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 8 years, 2 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 8 years, 2 months ago
Hello, you can take advantage of User Extended Profiles to collect Skype information from your users, like their username or whatever.
-
roofingFrisco's profile was updated 8 years, 2 months ago
-
deniel Roy's profile was updated 8 years, 2 months ago
-
Man Secret Desire's profile was updated 8 years, 2 months ago
-
Repair Old Battery's profile was updated 8 years, 2 months ago
-
Two Week Diet's profile was updated 8 years, 2 months ago
-
David Cavins replied to the topic Buddypress Group Extension API Not Working in the forum Creating & Extending 8 years, 2 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 8 years, 2 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 8 years, 2 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 8 years, 2 months ago
Use this handy shortlink:
http://therapyas.com.br/members/meIf 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 8 years, 2 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 8 years, 2 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 8 years, 2 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 8 years, 2 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.
-
aladinDr replied to the topic Question in the forum How-to & Troubleshooting 8 years, 2 months ago
thanks but i’m not specialist in buddypress developement , it’s complicated for me
-
wdewa Poker88 | Situs poker online terbaik's profile was updated 8 years, 2 months ago
-
Gomle started the topic Bubble notification when bbpress reply to topic either started or subscribed to in the forum How-to & Troubleshooting 8 years, 2 months ago
First of all, a big thank you to all contributors for this useful and traight out mindblowing software! And for free! Wow! :
In general I am not much of a coder, but I can understand some, and I have two questions:
QUESTION 1.
About buddypress bubble notification (not email) when there is a bbpress answer to a topic you either started or are…[Read more] -
David Cavins replied to the topic User registration based on a specific database of emails in the forum How-to & Troubleshooting 8 years, 2 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' ] ) && !… - Load More