Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Display Name not used fro bbPress, inside a BuddyPress installation in the forum How-to & Troubleshooting 10 years, 1 month ago

    This would need a change in the bbPress templates. I don’t know how useful the bbPress support forums are, but you could try leaving a message at http://bbpress.org

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Complete chat system??? in the forum How-to & Troubleshooting 10 years, 1 month ago

    I’m not aware of any that integrate into BuddyPress.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago

    Can you try this?

    I’ve removed the $user check which was unnecessary in this case. I also didn’t add a priority or the number of args passed (but again those are unnecessary so I’ve removed them).

    add_action( 'swpm_login', function() {
    bp_core_redirect( bp_loggedin_user_domain() );
    } );

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago

    So on successful login it looks as though Simple Membership’s swpm_login hook runs. With the Simple Membership plugin activated, try adding this to your theme’s functions.php file:

    add_action( 'swpm_login', function( $user, $pass, $remember ) {
    if ( ! $user || is_wp_error( $user ) ) {
    return;
    }
    bp_core_redirect(…
    [Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Undefined index. in the forum How-to & Troubleshooting 10 years, 1 month ago

    Hi ma3ry

    I know the path points to a BuddyPress file, but this notice is likely caused by a plugin you have activated. It basically means an array key r is being used, but the r key doesn’t actually exist in the array (for whatever reason).

    Try deactivating your plugins 1 by 1 to see which might be causing the notice.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago

    Simple Membership may use a different action hook on login. I’m guessing the redirect plugin uses the standard hook provided by BuddyPress. Do you have a link to Simple Membership?

  • Profile picture of Slava Abakumov

    Slava Abakumov started the topic Very strange BP Emails behaviour in the forum How-to & Troubleshooting 10 years, 1 month ago

    I’m using Sendgrid plugin to send emails. It replaces the wp_mail() function included with WordPress. Also BuddyPress 2.5.2 and WordPress 4.4.2.

    In the BuddyPress source code I found a filter 'bp_email_use_wp_mail', which skips BP’s email handling and instead sends everything to wp_mail() if wp_mail_content_type() has been configured for HTML, or…[Read more]

  • Profile picture of Naomi

    Naomi started the topic Show additional fields on member profile header in the forum How-to & Troubleshooting 10 years, 1 month ago

    I’m running WP 4.4.2 and Buddypress 2.5.2 on my site http://www.charlottemasoneducation.org

    I’d like to add the member’s city and state to the member profile page right where it says when their last activity was.

    I have added these fields in a theme-my-login-custom.php file in order for them to be part of the registration process to my private site…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic buddypress members search errors in the forum How-to & Troubleshooting 10 years, 1 month ago

    This might not fix the problem but have you tried BP Profile Search?

  • Profile picture of riseUp

    riseUp replied to the topic How to link the avatar picture to his/her profile page in the forum How-to & Troubleshooting 10 years, 1 month ago

    Hi @shanebp,

    I’m still trying to figure this out after a week of trial and error. Let’s step back a little for a second if we may…

    So, on http://www.ymphony.com, when a user clicks on a post’s avatar, I’d like the site to direct the user to the avatar’s profile page. The profile page is created by Buddy Press.

    It doesn’t seem like the following is…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago

    I did a bit of digging for you. The filter you need to use is bp_title_parts. Your hooked function will be passed an array of the BuddyPress title parts.

    Ref: bp-core/bp-core-template.php#L3101

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago

    For some reason I was looking at document_title_separator which is why I thought your function was passed a string. You are right, $title is an array. Sorry about that 🙂

  • Profile picture of Goldstein and Bashner

    Goldstein and Bashner's profile was updated 10 years, 1 month ago

    Goldstein and Bashner

    @eglaw

    View Profile
  • Profile picture of Henry Wright

    Henry Wright's profile was updated 10 years, 1 month ago

    Henry Wright

    @henrywright

    View Profile
  • Profile picture of Henry Wright

    Henry Wright replied to the topic $bp global object deprecated in the forum Requests & Feedback 10 years, 1 month ago

    You can still use global $bp; at the beginning of your functions to access the global’s data. But yes, buddypress() is a far better way. You should be able to update the Codex yourself? If that’s not the case, let me know 🙂

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago

    Also, $title should be a string, not an array. So doing stuff like this $title['title'] won’t work.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Filtering Title in BuddyPress in the forum Creating & Extending 10 years, 1 month ago

    so I guess BuddyPress is bypassing or overriding this filter

    If that were the case, you can increase the priority:

    add_filter('document_title_parts', 'custom_groups_title', 20);

    But I don’t think that’s the problem in this case. Maybe check if bp_is_group() and bp_current_action() are working as you expect them to be. var_dump( $some_value );…[Read more]

  • Profile picture of Eva

    Eva's profile was updated 10 years, 1 month ago

    Eva

    @anabellinchen

    View Profile
  • Profile picture of Henry Wright

    Henry Wright replied to the topic Shortcode to create Edit Profile Page in the forum How-to & Troubleshooting 10 years, 1 month ago

    The edit form is in edit.php. You will need to add that to the page but I don’t think it will be as easy as copying and pasting because the default form processing may depend on the current URL.

  • Profile picture of Brandon Allen

    Brandon Allen replied to the topic filter for wp_mail_from stops working with activated buddypress. in the forum How-to & Troubleshooting 10 years, 1 month ago

    For anyone using the wp_mail_from and wp_mail_from_name filters, commonly used in SMTP plugins, I’ve created a plugin that lets those filters work with BP emails.

    https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/

    Hope this helps someone!

  • 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