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 Activation mails not send after update in the forum How-to & Troubleshooting 10 years, 2 months ago

    People who are having problems: as far as I know, we have never seen this problem before during testing. If someone like you had helped us test BuddyPress 2.5 in beta or release candidate stage about four weeks ago, we’d have fixed it prior to release.

    We’ll get it fixed as soon as we figure out what the problem is.

    I was just thinking about it…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic wp_mail_from BP_email in the forum Creating & Extending 10 years, 2 months ago

    Cool!

    @jgob https://github.com/WordPress/WordPress/blob/ef7a559e2e7804844f99034e4ec018c5ffbf66c9/wp-includes/pluggable.php#L1700

    There’s no way to filter or halt the action; I suppose it MIGHT be possible to intercept it inside wp_mail() but it’d be awkward.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic New Email Template (Self defeating?) in the forum Ideas 10 years, 2 months ago

    Thanks for your feedback, @backpackersunion. I’ll let others chime in as I spent a long time working on the email feature, so it’s close to my heart, but here’s my thoughts:

    Decisions, not options.
    It’s much easier to add options than it is to remove options.
    It’s risky to add options or features unless you’re sure what your users want, so…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic translation email in the forum Installing BuddyPress 10 years, 2 months ago

    @airsid

    IF your translation file is up to date (have you re-downloaded the files to check?), those strings should be getting translated.

    Otherwise, another option is to edit the email template. Copy buddypress/bp-templates/bp-legacy/buddypress/assets/emails/single-bp-email.php into your theme and make whatever changes you want.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic 'bp_email_use_wp_mail' Causing Issues in the forum How-to & Troubleshooting 10 years, 2 months ago

    BP emails enabled (the default) + WP Better Emails = email is sent in the WP Better Emails template.

    BP emails disabled + WP Better Emails = email is sent in the WP Better Emails template.

    I don’t know why you’re having problems with this — hopefully we’ll figure it out — but it seems like there’s something particular to your site or host…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic 'bp_email_use_wp_mail' Causing Issues in the forum How-to & Troubleshooting 10 years, 2 months ago

    If the filter bp_email_use_wp_mail returns true, it’ll grab the “plain text” version of the email from BuddyPress, and send that to wp_mail(). BuddyPress does not re-implement wp_mail().

    BuddyPress will also fall back to use wp_mail() if it detects that any other plugin has re-implemented that function (pretty common in email plugins), or if…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic wp_mail_from BP_email in the forum Creating & Extending 10 years, 2 months ago

    I just updated the sample code on the thread you mentioned. I tested it and had to make a small change:

    add_action( 'bp_email', function( $email_type, $email_obj ) {
    $email_obj->set_from( "custom@example.com", "Custom Website Name" );
    }, 10, 2 );

    This ^ works for me. I put it into a file in mu-plugins for convenience.

    Note: the from address…[Read more]

  • Profile picture of Gretchen Louise

    Gretchen Louise replied to the topic BuddyPress + bbPress Breaks bbPress Search Widget in the forum How-to & Troubleshooting 10 years, 2 months ago

    Yes, this is the search widget built into bbPress.

    We deactivated all plugins except for bbPress, and it worked fine. Next we activated BuddyPress, and it quit working. Even when those are the only two plugins active, it doesn’t work.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic New Email Templates (change footer & header?) in the forum How-to & Troubleshooting 10 years, 2 months ago

    Those elements are hard-coded in the template, so the latter.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Cannot log into a user created account "encfubu" in the forum How-to & Troubleshooting 10 years, 2 months ago

    Are you using W3 Total Cache?

  • Profile picture of Mark

    Mark replied to the topic Possible Bug: When Displaying a Members Loop Above Cover Image on Member Profile in the forum How-to & Troubleshooting 10 years, 2 months ago

    Hi @imath!

    Interesting, I noticed the relation of those three entries were breaking the plugin/widget combination I was messing around with as a workaround. I ended up getting it to work by moving the code around in relation to those files. Took me forever though, lol. I am not a coder so have no clue what much of this stuff means but can move…[Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic wp_mail_from BP_email in the forum Creating & Extending 10 years, 2 months ago

    Check you’re running PHP 5.3 or higher, just in case that’s the issue.

  • Profile picture of Mark

    Mark replied to the topic Possible Bug: When Displaying a Members Loop Above Cover Image on Member Profile in the forum How-to & Troubleshooting 10 years, 2 months ago

    @djpaul Hi Paul,

    I have no clue what that means! Will copy my details from this ticket into a bug report when I get a chance. It’s 3:22AM so I will do so probably tomorrow.

    So I just pieced some code from Buddypress 2.5.0 (previously used code from 2.4.0 files during testing) files together using class-bp-core-whos-online-widget.php and…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic wp_mail_from BP_email in the forum Creating & Extending 10 years, 2 months ago

    It ought to work. I wrote that code but it came with the disclaimer that I hadn’t actually tested it. 🙂

    If someone wants to test it and correct if it necessary, that’d be helpful, else I will try to look this weekend.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic BuddyPress 2.5.0 Medici 3 problems in the forum How-to & Troubleshooting 10 years, 2 months ago

    About the language of the emails, please read https://buddypress.org/support/topic/read-this-first-buddypress-2-5-master-list/#post-250547

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic how to manually upgrade to 2.5.0 from 2.4.3 in the forum Installing BuddyPress 10 years, 2 months ago

    WP-CLI is nice.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic how to manually upgrade to 2.5.0 from 2.4.3 in the forum Installing BuddyPress 10 years, 2 months ago

    What you basically need to do is:

    1) rename the old plugins/buddypress/ folder to bp-backup
    2) unzip BP 2.5.0 into plugins/buddypress/
    3) go to your site, into wp-admin/plugins.php. This will start the update script (it should happen instantly and without displaying anything).
    4) If the new BP is working for you, you can then delete the bp-backup…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic BuddyPress + bbPress Breaks bbPress Search Widget in the forum How-to & Troubleshooting 10 years, 2 months ago

    Is this the search widget built into bbPress, or does another plugin provide it?

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Download for 2.4.3? in the forum How-to & Troubleshooting 10 years, 2 months ago

    HTTP 500 errors are pretty bad. We’re tracking one bug that might be the cause, but if you can look in your web server’s PHP error log (or ask your host to do this for you) and share with us any error or warning messages for the time period where you tried to update BuddyPress, we can look at it and find out for sure.

    I’m very sorry 2.5 didn’t…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic buddypress.2.5.0-rc Feeback in the forum How-to & Troubleshooting 10 years, 2 months ago

    The very last one might be an issue, but the others need to be fixed to be sure. Those others are to do with some other plugin you have active on your site; it’s doing something at the wrong time (too early), and BuddyPress and bbPress are both throwing warning messages.

    I don’t think there’s a BuddyPress bug, you’ll need to look at those other plugins.

  • 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