Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of David Cavins

    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!

  • Profile picture of David Cavins

    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.

  • Profile picture of David Cavins

    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/

  • Profile picture of David Cavins

    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.

  • Profile picture of David Cavins

    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 ) {
    $can_create = false;
    if ( current_user_can( 'known_capability' ) ) {
    $can_create = true;
    }
    return $can_create;
    }…
    [Read more]

  • Profile picture of John Mayer

    John Mayer's profile was updated 8 years, 1 month ago

    John Mayer

    @beritaotomotif10

    View Profile
  • Profile picture of @mercime

    @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/

  • Profile picture of Jamtogel dotcom

    Jamtogel dotcom's profile was updated 8 years, 1 month ago

    Jamtogel dotcom

    @jamtogeldotcom

    View Profile
  • Profile picture of Jonas

    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' );
    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…
    [Read more]

  • Profile picture of Jonas

    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' );
    define ( 'BP_AVATAR_DEFAULT_THUMB',…
    [Read more]

  • Profile picture of Jonas

    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' );

  • Profile picture of Paket Wisata Jogja Murah

    Paket Wisata Jogja Murah's profile was updated 8 years, 1 month ago

    Paket Wisata Jogja Murah

    @paketwisatajogja2

    View Profile
  • Profile picture of metalhead

    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:

    my js error

    But where do I go from here?

  • Profile picture of Jorge Dominguez

    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.

  • Profile picture of Azawebsite

    Azawebsite's profile was updated 8 years, 1 month ago

    Azawebsite

    @azawebsite

    View Profile
  • Profile picture of emasdewa Dewapoker

    emasdewa Dewapoker's profile was updated 8 years, 1 month ago

    emasdewa Dewapoker

    @emasdewacom

    View Profile
  • Profile picture of VEF Voog Blog

    VEF Voog Blog's profile was updated 8 years, 1 month ago

    VEF Voog Blog

    @vikingequipments

    View Profile
  • Profile picture of Jorge Dominguez

    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: Cover
    And in the bellow part i want to post any other information that i like.

    How can I do that?

  • Profile picture of metalhead

    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.

  • Profile picture of Curtis Jardine

    Curtis Jardine's profile was updated 8 years, 1 month ago

    Curtis Jardine

    @curtisjardine

    View Profile
  • Load More

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In