-
David Cavins replied to the topic Messages not all showing. in the forum How-to & Troubleshooting 8 years, 1 month ago
Since you’re using BuddyBoss theme (I think) I’d probably ask them first, because the template that loads the message loop is provided by the theme.
That’s a weird problem, though!
-
David Cavins replied to the topic Registration process in the forum Ideas 8 years, 1 month ago
The best advice I can offer is to make the registration page as simple as can be, and then ask for more info later, once the user is registered. If the registration page is hard, the user has to _really_ want to join to go through with it.
-
David Cavins replied to the topic Restrict users seeing other users based on fields in the forum Creating & Extending 8 years, 1 month ago
You might also approach this with member types: https://codex.buddypress.org/developer/member-types/
-
David Cavins replied to the topic Forgotten Password in the forum Installing BuddyPress 8 years, 1 month ago
#2 can also happen if the user’s email client has stripped out some of the needed query arg parameters. Outlook has been known to strip the query arg
?key=for instance. -
David Cavins replied to the topic How to restrict group creation to certain users in the forum How-to & Troubleshooting 8 years, 1 month ago
I generally stick to using capabilities. So I’d find a capability that all of the roles you want to be able to create groups have. Then the code looks like:
add_filter( 'bp_user_can_create_groups', function( $can_create ) {[Read more]
$can_create = false;
if ( current_user_can( 'known_capability' ) ) {
$can_create = true;
}
return $can_create;
}… -
John Mayer's profile was updated 8 years, 1 month ago
-
@mercime replied to the topic Profile Visibility Options Doesn’t Work in the forum How-to & Troubleshooting 8 years, 1 month ago
@shakarum it would help us to help you if we knew more about your installation
https://buddypress.org/support/topic/when-asking-for-support-2/ -
Jamtogel dotcom's profile was updated 8 years, 1 month ago
-
Jonas replied to the topic Prevent subscribers from creating groups in the forum How-to & Troubleshooting 8 years, 1 month ago
You could try something like this
add_filter( 'bp_user_can_create_groups', 'create_groups_hide_for_roles' );[Read more]
function create_groups_hide_for_roles($can)
{
$user = wp_get_current_user();
$banned_roles = array(
'subscriber',
'editor' // fill in the roles who can't make groups
);
if (array_intersect($banned_roles, $user->roles))
{
return… -
Jonas replied to the topic changing default avatar – codex info not working in the forum How-to & Troubleshooting 8 years, 1 month ago
Digging into it a bit more, it seems gravatars influences it. You can disable the gravatars like so
add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' );followed by using your original code
define ( 'BP_AVATAR_DEFAULT', 'http://example.com/default-avatar.jpg' );[Read more]
define ( 'BP_AVATAR_DEFAULT_THUMB',… -
Jonas replied to the topic changing default avatar – codex info not working in the forum How-to & Troubleshooting 8 years, 1 month ago
You could probably do something like the following to achieve it as well
function hanza3_add_default_avatar( $url ){
return get_stylesheet_directory_uri() .'/images/imagename.jpg';
}
add_filter( 'bp_core_mysteryman_src', 'hanza3_add_default_avatar' ); -
Paket Wisata Jogja Murah's profile was updated 8 years, 1 month ago
-
metalhead replied to the topic Autocomplete No Longer Working in the forum How-to & Troubleshooting 8 years, 1 month ago
Thanks for your advice.
I viewed the console, and found this:
But where do I go from here?
-
Jorge Dominguez replied to the topic Using header cover in the forum Creating & Extending 8 years, 1 month ago
Can you point me to a guide for noobs?
I dont know much of buddypress and its structure.
BUt would like it get to know. -
Azawebsite's profile was updated 8 years, 1 month ago
-
emasdewa Dewapoker's profile was updated 8 years, 1 month ago
-
VEF Voog Blog's profile was updated 8 years, 1 month ago
-
Jorge Dominguez started the topic Using header cover in the forum Creating & Extending 8 years, 1 month ago
Hey team!
Im wondering how can I use the cover of a profile this part:

And in the bellow part i want to post any other information that i like.How can I do that?
-
metalhead started the topic Autocomplete No Longer Working in the forum How-to & Troubleshooting 8 years, 1 month ago
Hello,
I’ve been using this line of code:
define( 'BP_MESSAGES_AUTOCOMPLETE_ALL', true );in my bp-custom.php file, in order to turn on autocomplete when a user is composing a message.But, it no longer works. Have there been any changes to BP that I failed to read about?
Thanks in advance.
-
Curtis Jardine's profile was updated 8 years, 1 month ago
- Load More