Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Condos Deal

    Condos Deal's profile was updated 9 years, 5 months ago

    Condos Deal

    @condosdeal

    View Profile
  • Profile picture of Bunty

    Bunty replied to the topic why there is no action for group photo upload? in the forum Requests & Feedback 9 years, 5 months ago

    Thanks. I’ll do that. 🙂

  • Profile picture of Henry Wright

    Henry Wright replied to the topic why there is no action for group photo upload? in the forum Requests & Feedback 9 years, 5 months ago

    You can request one be added here

    https://buddypress.trac.wordpress.org

  • Profile picture of Bunty

    Bunty started the topic why there is no action for group photo upload? in the forum Requests & Feedback 9 years, 5 months ago

    We have this action while user profile picture upload in function bp_avatar_ajax_set() into “buddypress/bp-core/bp-core-avatars.php”

    do_action( 'xprofile_avatar_uploaded', (int) $avatar_data['item_id'], $avatar_data['type'] );

    This action is only for user photo upload.

    So why buddypress didn’t gave such action for group photo…[Read more]

  • Profile picture of John James Jacoby

    John James Jacoby commented on the post, BuddyPress 2.7.0 – "Migliaccio", on the site BuddyPress.org 9 years, 5 months ago

    Hi @livingflame. Thanks for this feedback. We’re listening, and these are all great ideas.

  • Profile picture of John James Jacoby

    John James Jacoby commented on the post, BuddyPress 2.7.1, on the site BuddyPress.org 9 years, 5 months ago

    Hey Kevin. Replying here to make sure all bases are covered. We released 2.7.2 right away to fix this. I’m really sorry for the inconvenience, and we all learned a little bit more about double-negative ternary […]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Add "Anonymous" to menu bar in the forum Installing BuddyPress 9 years, 5 months ago

    You can use the is_user_logged_in() function to check. For example

    if ( is_user_logged_in() ) {
    // This user isn't logged in.
    echo 'Anon';
    } else {
    // This user is logged in.
    // Do something else.
    }

  • Profile picture of Paul Wong-Gibbs

    Paul Gibbs updated the BuddyPress Release Leads and Deputies page, on the BuddyPress Codex 9 years, 5 months ago

    The release lead works with all contributors to ensure the success of the release. The role blends aspects of being a product manager, project manager, engineering manager, release manager, and community manager. […]

  • Profile picture of Paul Wong-Gibbs

    Paul Gibbs updated the BuddyPress commit access page, on the BuddyPress Codex 9 years, 5 months ago

    What is commit access?

    The code that comprises BuddyPress is written by volunteers. Anyone who wants to suggest an improvement or a bugfix to the BP codebase is welcome to do so, by submitting their proposed […]

  • Profile picture of Kieran

    Kieran replied to the topic how to change @ mention name in the forum Installing BuddyPress 9 years, 5 months ago

    I don’t have an answer for you right now, I’m looking into the same issue too.

    As I understand it you have the following issue. You have a user with the username Dave, their profile field ‘Name’ is called Apple, using mentions someone is tagging Apple but when posted it prints Dave and NOT Apple. Is that correct?

    Kieran.

  • Profile picture of Andrew Tegenkamp

    Andrew Tegenkamp started the topic Wrapper function if BP is activated? in the forum Creating & Extending 9 years, 5 months ago

    I’m following along with https://codex.buddypress.org/plugindev/how-to-edit-group-meta-tutorial/ to add some group meta and it works great.

    I’m wondering if the second code block “wrapper function if BP is activated” is still the preferred way and if it’s required. I haven’t seen that in other plugins with robust hooks and filters recently like…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic How to edit title on page in buddypress activate template in the forum How-to & Troubleshooting 9 years, 5 months ago

    The .mo file should go in this folder wp-content/languages/plugins

    The wp-content folder won’t get overwritten. That’s where all of your content is kept.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Dynamic Link in the forum Installing BuddyPress 9 years, 5 months ago

    Hi @oxeem69

    I need a dynamic ID as shown above

    I’m not seeing a dynamic ID?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic How to edit title on page in buddypress activate template in the forum How-to & Troubleshooting 9 years, 5 months ago

    @venutius is right; a .mo file is the way to go. Check out this article which should help get you started:

    Customizing Labels, Messages, and URLs

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic How to view pending signup profile fields in the forum How-to & Troubleshooting 9 years, 5 months ago

    Please take a minute to read this post: https://codex.buddypress.org/themes/bp-custom-php/
    Short answer: /wp-content/plugins/bp-custom.php

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic How to view pending signup profile fields in the forum How-to & Troubleshooting 9 years, 5 months ago

    Related ticket: https://buddypress.trac.wordpress.org/ticket/7261

  • Profile picture of Henry Wright

    Henry Wright replied to the topic bp_ajax_querystring filter not runing in the forum How-to & Troubleshooting 9 years, 5 months ago

    Inside your plugin try adding:

    add_action( 'init', function() {
    add_filter( 'bp_ajax_querystring', 'your_function', 10, 2 );
    }

    Of course, also define your function:

    function your_function( $ajax_querystring, $object ) {
    // Code here.
    return $ajax_querystring;
    }

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Buddypress from mobile in the forum Installing BuddyPress 9 years, 5 months ago

    You will need to have an understanding of CSS. To get started, take a look here

    https://developer.mozilla.org/en-US/docs/Web/CSS

    It’s a very useful reference; I’ve had it bookmarked for a while now.

  • Profile picture of Andrew Tegenkamp

    Andrew Tegenkamp replied to the topic Read Only Group? in the forum How-to & Troubleshooting 9 years, 5 months ago

    Thanks Hugo. Looks like it’s http://commonsinabox.org/documentation/plugins/bp-group-announcements and https://github.com/cuny-academic-commons/bp-group-announcements has the code so I’ll definitely start there.

    @Venutius, I’ll circle back here if I find anything exciting to share, but may be a month or so.

  • Profile picture of Chad Morrison

    Chad Morrison's profile was updated 9 years, 5 months ago

    Chad Morrison

    @noahwater47

    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