Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,701 through 10,725 (of 68,948 total)
  • Author
    Search Results
  • #250736
    Paul Wong-Gibbs
    Keymaster

    @neev07 I’m not sure there’s anything we can do to fix this yet, but you might be able to do some research and figure out if there’s any adjustments we can make.

    I suspect the content in the email is going to play a big part (e.g. number of links, images or not, and so on).

    For example, you could get a bunch of email accounts on services like Gmail, Hotmail, and others, and creating accounts on your site with those email addresses. Do something in BuddyPress that sends exactly the same email to each user, and then you can check all the inboxes and see if ALL services are spamming the emails, or only some.

    The results of that, plus some research on Google, might give us some ideas.

    #250734
    Paul Wong-Gibbs
    Keymaster

    @fidelleon Thanks for testing!

    Support for “WP-Mail-SMTP” and “Easy WP SMTP” will be fixed in BuddyPress 2.5.1.
    See https://buddypress.trac.wordpress.org/ticket/6945 for tech details.

    #250733
    Paul Wong-Gibbs
    Keymaster

    And keep an eye on https://buddypress.org/support/topic/read-this-first-buddypress-2-5-master-list/.

    Thanks everyone for reporting these issues.

    #250732
    Paul Wong-Gibbs
    Keymaster

    Support for “WP-Mail-SMTP” and “Easy WP SMTP” will be fixed in BuddyPress 2.5.1.
    See https://buddypress.trac.wordpress.org/ticket/6945 for tech details.

    Note that filters like wp_mail_from will continue to not be supported. See previous posts for how to implement the change in new versions of BuddyPRess.

    #250731
    Paul Wong-Gibbs
    Keymaster

    This will be fixed in BuddyPress 2.5.1.

    Paul Wong-Gibbs
    Keymaster

    This will be fixed in BuddyPress 2.5.1.

    #250728
    Paul Wong-Gibbs
    Keymaster

    @rogercoathup Hi. Assuming those plugins re-implenment wp_mail(), as I expect most do, yes. Things will continue to work. They’ll get plain text versions of the BuddyPress emails, just the same as in previous BuddyPress releases (though some emails’ sentences have been tweaked/rephrased).

    Paul Wong-Gibbs
    Keymaster

    @lanvalencia I and others will try to get to help you as soon as possible.

    None of us gets paid for contributing to BuddyPress. It’s the weekend. I have about 6 other forum discussions open where I’m trying to figure out why emails aren’t being sent at *all*, and that’s my current (personal) priority.

    #250714
    shanebp
    Moderator

    Please use the code button when sharing code.

    The fields field_id and field_value do not exist in the function you are attempting to filter.
    See this for accepted fields:
    https://buddypress.trac.wordpress.org/browser/tags/2.2.1/src/bp-members/bp-members-template.php#L453

    I think you want this field retval['include'].

    Something like:

    function see_woman_gender( $retval ) {
    	global $wpdb;
    
    	$field_id = 3;
    	$field_value = 'Woman';
    	
    	$query = "SELECT user_id FROM " . $wpdb->prefix . "bp_xprofile_data WHERE field_id = " . $field_id . ' AND field_value = ' . $field_value;
    
    	$woman_ids = $wpdb->get_col( $query );
      
    	if ( !empty( $woman_ids ) ) 
    		$retval['include'] = $woman_ids;
    
    	return $retval;
    }
    add_filter( 'bp_after_has_members_parse_args', 'see_woman_gender' );

    There are field re meta data; I don’t think they work with profile data.
    But you could try this and let us know if it works:

    function see_woman_gender( $retval ) {
         $retval['meta_key'] = '3';
         $retval['meta_value'] = 'Woman';
     
        return $retval;
    }
    add_filter( 'bp_after_has_members_parse_args', 'see_woman_gender' );
    #250711

    In reply to: translation email

    lanvalencia
    Participant

    I install the new version of Buddypress and the email “accepted your friendship request” do not work and the rest of emails it is work, my site do not send the email or in my account of hotmail, gmail and yahoo i do not recive this email, i would like that any people give me a solution. Thank you.

    #250707
    Paul Wong-Gibbs
    Keymaster

    Hi @nkeatign

    It ought to be totally do-able, but you’ll need to write it. If BuddyPress detects that something has re-implemented WordPress’ wp_mail function (like the Sendgrid plugin does), then it’ll use the plain text version of the email and pass that to wp_mail to let the custom wp_mail implementation deliver the email.

    I am not aware of anyone who’s written a Sendgrid implementation for BuddyPress 2.5 yet, because the 2.5 release is still pretty new! Maybe you could write an integration plugin and be the first!

    Here’s what you need to do (we can document this process more formally if this works for you): — off the top of my head, not tested, be wary of unexpected dragons, etc —

    1) Add add_filter( 'bp_email_use_wp_mail', '__return_false' );
    2) Add add_filter( 'bp_send_email_delivery_class', function( $delivery_class ) { return 'Your_Class'; } );.

    These steps tell BuddyPress to always use its own email APIs, and tell it to use the class named Your_Class to handle the email delivery. The default delivery class is BP_PHPMailer which uses PHPMailer. I strongly suggest you use it as a reference for implementing a Sendgrid implementation.

    Your_Class needs to implement the interface BP_Email_Delivery which provides a method bp_email(), which receives a BP_Email object. Everything about the email is contained inside the BP_Email object.

    What your bp_email() method will need to do is call the Sendgrid’s plugin email-sending function. You can get all the information you need (recipients, HTML body, plain text body, etc) from the BP_Email object.

    #250705
    fidelleon
    Participant

    Hello,

    I agree having more betatesters would be fine but sometimes it’s difficult when you just manage only one Buddypress site.

    I’m having the same problem, the activation mail is not being sent since I updated. I have activated full debug mode (E_ALL and Display_errors) but nothing shows in the error log.

    Besides, I had overriden the normal activation mail in my child’s theme’ functions.php. After it stopped working I did a grep and saw the function I was trying to use was in the v2.5 deprecated list, so I commented out all the overriding code.

    I’m using the Easy WP SMTP plugin, the sender mails are good ones both in the plugin and the main WordPress configuration, and it can receive mails.

    #250700
    danbp
    Participant

    Yep, now it’s clearer. But sorry, I don’t know about a way to get some groups on main site and some others only on a secondary site.

    Group should be intended as members group. And a group is not a site. It is just a bunch of members attached to a group.

    Also, a group is not a blog and that’s why you get on a multisite install several blogs who share the same members, belonging eventually to differents groups. What and wherever the install is on main or seconday blog.

    Members are all in the same DB table and WP doesn’t share them by groups, but by username > blog authors…

    As you already know, BuddyPress comes with a member directory and a group directory. And on a multisite(aka network), a blog directory. But basically, all 3 cases are related to members, not to blog. There is no relation between a blog and a group. You can eventually install a blog into a group (buddypress group blog plugin), but you can’t install a group into a specific blog (outside the one where BP is activated). A group is not a blog.

    On codex it is specified: buddypress root blog (the one you get from WordPress) or buddypress root blog on secondary site.

    In other words, It should go to the secondary site. is not possible.

    But i can be completely wrong. 😉

    #250699

    In reply to: PMPRO and Buddypress

    jrb9406
    Participant

    It seems that buddypress sub-pages aren’t calling this plugin. When I echo any of the variables, they show up for /groups/, but not for /groups/group-name/. Perhaps there’s a template somewhere that I need to address?

    #250697
    tammy1999
    Participant

    Sorry I wasn’t clear.

    I have a multi site with with a main site and secondary site. I have put define ( ‘BP_ROOT_BLOG’, 2 ); in the wp-config.php. I have only activated BuddyPress on the secondary site. And everything is good with the settings.

    Except when it comes to the Groups Pages on the Dashboard of the secondary site. When I make any changes to the pages on any group and hit Save, it will go to the Main Site. It should go to the secondary site. Also any Group Page details shows up in the Group Page area on the Main site. The only reason I know this is because I activated Buddy Press on the Main site and all the groups are there. But I keep all the BuddyPress plugins off on the Main site.

    The Group Pages doesn’t have any group pages listed on the secondary site.

    I thought after making the secondary site the BuddyPress site that everything would show up there.

    #250693

    In reply to: PUBLIC MESSAGE

    danbp
    Participant

    The css tag ID #aw-whats-new-submit may exist, but if your theme use some specific height or width for it which is different from what is used by BP in the js/css file, you didn’t see the button.

    This is a very common theme issue, handled on many topics on this forum.


    @tonyxs1
    logically in the template. The what’s new form is used on activity, profile and group page.

    You’ll certainly find some good information from these one or other search results:
    https://buddypress.org/support/search/what%5C’s+new+form/

    #250692
    danbp
    Participant

    Hi @tammy1999

    I have a 2 site multisite sounds a bit ambiguous.

    Do you mean 2 multisite installs or 1 multisite install with 2 sites ?

    If your config is the second option, BuddyPress should be at the root of the main site, at the same level as WordPress. Case A. of a standart network install, as explained here:

    Installation in WordPress Multisite

    Read attentively each step of your special configuration to see if you didn’t omited something in your settings.

    #250679
    edragonxx
    Participant

    Did not work either. Have tried so many different ways to get rid of that buddypress register page and use standard one. This option should be already built in to let users use do they want use buddypress one or do they want use wordpress one. So that login, register, lost password, etc forms would use same page/system and would not be different.

    #250678
    Paul Wong-Gibbs
    Keymaster

    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 and have one question which would be interesting: in wp-admin Settings > General, the value for the Email Address — is it a REAL email address? For example, if you were to send an email to that address, would it receive it?

    #250674
    DCstyle
    Participant

    Im running into the same problem, But its not just the Activation mails, its any kind of mail related to buddypress thats not working anymore. My members get no updates and cant activate. Please Bring us a fix/solution Asap

    #250673
    Paul Wong-Gibbs
    Keymaster

    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 launching with a minimal feature set and listening to feedback and consensus helps us make informed decisions.

    And the template, yes — you run the risk of the template going out-of-sync with the version distributed by BuddyPress. But this isn’t specific to the email feature, and could apply to any of BuddyPress thirty or so other templates.

    We have some plans to add some communication around template changes in a feature release, like WooCommerce apparently does, which will help a bit.

    #250671

    In reply to: translation email

    Paul Wong-Gibbs
    Keymaster

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

    #250669
    Paul Wong-Gibbs
    Keymaster

    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 something’s configured WordPress to send HTML emails.

    BuddyPress does not stop or block any other plugins’ emails from being sent, nor any emails sent by WordPress core (with a few exceptions for multisite-specific emails, but this has been implemented for about 6 or 7 years, so it’s not a new change).

    I am just now testing this with WP Better Emails. Give me a minute.

    #250661

    In reply to: translation email

    airsid
    Participant

    Hello,

    @djpaul
    : link is not good anymore 🙁


    @danbp
    : thank you. I’ve buddypress in french isntalled already. Such a great plugin 😉
    But what i can’t find is how to translate the “Hi” of the “Hi {{recipient.name}},” in emails header.
    And the idem for the “unsubscribe” in bottom of emails.

    #250659
    mtraps
    Participant

    Okay thanks. I’ll have to do some more research.Do you recommend using a theme that is meant for buddy press or would any theme work perfect with buddypress?

Viewing 25 results - 10,701 through 10,725 (of 68,948 total)
Skip to toolbar