-
dainismichel started the topic What's a Reasonable Out-The-Box Functional Community Setup? in the forum How-to & Troubleshooting 9 years, 11 months ago
Hey, I’ve been running a couple BuddyPress sites for a good number of years now, and well, the setups are pretty involved.
I’m curious, if there might not now be a few plugin combinations that create reasonably functional BuddyPress communities, out-the-box.
So, basically: everything works.
It’s not that important “how” everything works, but…[Read more]
-
Henry Wright replied to the topic Registration form not working on Windows mobile in the forum How-to & Troubleshooting 9 years, 11 months ago
Thanks for the update @antdevine, glad you fixed the issue.
-
Dhairy Borva's profile was updated 9 years, 11 months ago
-
Henry Wright replied to the topic Assign Default Member Type in the forum How-to & Troubleshooting 9 years, 11 months ago
This sounds like a problem with the edit profile screen rather than your registration hook.
-
Henry Wright replied to the topic Registration form not working on Windows mobile in the forum How-to & Troubleshooting 9 years, 11 months ago
I don’t have a Windows phone to test this but feel free to open a Trac ticket to report the issue:
-
Henry Wright replied to the topic User Profile navigation in the forum How-to & Troubleshooting 9 years, 11 months ago
buddypress.org is open source so feel free to check out the theme’s code.
-
Cueria Law, L.L.C.'s profile was updated 9 years, 11 months ago
-
David Cavins replied to the topic Removing the Member Navigation Menu leaves a border-left in the forum Creating & Extending 9 years, 11 months ago
Hi Ben,
You are correct that it’s best to leave the bp stylesheet in place so that you get updates to that file. You can add a custom stylesheet, though, and increase the selector power of the rule, so that it overrides the bp.css rule, like
.site #buddypress #item-body { border-left: none; }Here’s the basic…[Read more]
-
David Cavins replied to the topic Group Email Subscription: Editing the template in the forum Miscellaneous 9 years, 11 months ago
Hi pckelly123: WP Better Emails works well for applying a template to all mail sent via the function
wp_mail(), which is what the group email subscription plugin uses.
https://wordpress.org/plugins/wp-better-emails/ -
Paul Wong-Gibbs posted an update 9 years, 11 months ago
Hello World
-
Ayan Mukhopadhyay started the topic Restrict Username and Full Name in the forum How-to & Troubleshooting 9 years, 11 months ago
Hello, I’m using buddypress for my social networking site. But I want a restriction mode on my social site. basically there is paid membership system, I want to restrict the username and Full Name filed by viewing by other members. I mean can I add some random user name and hide the original member’s username and Full name from all user?
-
Henry Wright replied to the topic Recruitment site in the forum Creating & Extending 9 years, 11 months ago
For a recruitment site, can buddy press have different account types for employers and employees?
Yes. Check out Member Types:
-
Henry Wright replied to the topic How to make group avatars sharper in the forum How-to & Troubleshooting 9 years, 11 months ago
You could be using the thumb sized avatar. Check your theme to make sure the full sized image is being used.
bp_core_fetch_avatar()is the function used by BuddyPress to display avatars but there’s alsoget_avatar()so check for that too (it’s a WordPress function). -
Andrew Tibbetts started the topic Assign Default Member Type in the forum How-to & Troubleshooting 9 years, 11 months ago
I am trying to assign a default member type when users register from a non-buddypress registration form. This is the action I’m adding:
add_action( 'user_register', 'default_member_type', 10, 1 );
function default_member_type( $user_id ) {if ( ! bp_get_member_type($user_id) ) {
bp_set_member_type( $user_id, 'member' );
}
}
…and the…[Read more]
-
Paul Wong-Gibbs replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 9 years, 11 months ago
It’s not really a Mailgun support problem. It’s just that BuddyPress requires a different email interface to what WordPress needs. I hope in time people will build these for BuddyPress, but for now, you’ll need a developer to build it out for you.
If you know PHP and the basics of how to build with WordPress, I can give you hints.
-
Paul Wong-Gibbs replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 9 years, 11 months ago
Use the Repair Tools under wp-admin Tools > BuddyPress. There’s one to reinstall emails.
Emails not sending in HTML means you probably have some plugin active that redeclares the
wp_mailfunction — this doesn’t make sense to non-developers, I admit, but if you have any plugins that do things with emails for WordPress, that’s the likely candidate. -
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 9 years, 11 months ago
I doubt you’ll find a folder with them in it; instead, they probably get added to the database as part of the BuddyPress install routine. Try installing BuddyPress on a fresh copy of WordPress to see if they suddenly show up.
-
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 9 years, 11 months ago
That’s strange!
Without customising anything, I see this on my install:

@djpaul did all of the Email API heavy lifting, perhaps he knows if there should be items in the list by default?
-
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 9 years, 11 months ago
Take a look at the
bp_email_get_schema()function for the default messages used. -
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 9 years, 11 months ago
Is it necessary to create emails for each situation to make sure emails go out?
There should be default items in that list. Did you delete them?
- Load More