Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,651 through 5,675 (of 68,948 total)
  • Author
    Search Results
  • #280138
    Prashant Singh
    Participant

    Hi,

    You can find it in your theme kleo/buddypress/members/single/cover-image-header.php and the code is
    <?php bp_displayed_user_avatar( 'type=full' ); ?>

    You need to echo your profile field just below this one.

    Thanks

    Prashant Singh
    Participant

    Hi,

    This is hardcoded in bbpress plugin here bbpress\includes\extend\buddypress\groups.php.

    Find the line $this->slug = 'forum'; but I think changing this may create some issues but you can check if it works fine for you or not. Also changing anything in core file is never recommended because on the next update you will lose it and then have to redo again.

    One recommendation is that always take a backup of your site when you are doing such core changes.

    Thanks

    Prashant Singh
    Participant

    Also, it seems to a coding customization to me that is done on your site. Because BuddyPress does not provide that home link in profile, it always starts from view.

    Thanks

    #279955
    Prashant Singh
    Participant

    You need to create buddypress/members/single folder in the child theme and then copy paste the file from plugin to this location and there you can see the code for the avatar.

    Theme Compatibility & Template Files

    Thanks

    Prashant Singh
    Participant

    Hi,

    This topic already exists here: https://buddypress.org/support/topic/trigger-function-on-submitting-edit-profil-form-filter/

    Please do not repost again.

    lookingahead
    Participant

    P.S.: apparently this is NOT a bbpress issue; they said it is something that buddypress is responsible for, because these are forums that are associated with user groups in buddypress.

    #279799

    In reply to: Newbie question

    Bit Boy
    Participant

    Hi,
    BuddyPress works on top of WordPress to add community/social features. The integration is almost seamless.

    Now to answer your questions:-
    1. will my members have to login a second time to use BuddyPress?
    Is the login required by WordPress account? if yes, They will not need to login again.

    2. Will that they then have two accounts to deal with?
    No, It is only one account.

    Give it a try, BuddyPress should be simple enough to use.

    Best Regards
    B

    #279797
    corsi159
    Participant

    Hello Paul,

    Thank you for your reply.

    I’ve seen in this old topic that people had, in the time, similar issues :

    BuddyPress Email Notification Ignoring SMTP Server Settings?

    I thus created a bp-custom.php file in my plugin directory, and added the following to it :
    add_filter(‘bp_email_use_wp_mail’, ‘__return_true’);

    And now, Buddypress is sending the e-mails through the WP SMTP Config.

    I am surprised that I had to do this. This is not ideal, as my emails are now sent in plain text (not html)…

    #279782
    Paul Wong-Gibbs
    Keymaster

    WP Mail SMTP seems to be a well-written plugin. I’ve taken a quick look at its code, and how it affects what WordPress does, and it looks like BuddyPress – in theory – should work with it. However, if you say it doesn’t, I don’t know why – you’d have to spend time debugging what is going on.

    If you know some PHP and basic WordPress development, I can give you some pointers (e.g. start looking at the phpmailer_init hooks and how both plugins add to it).

    #279781
    Paul Wong-Gibbs
    Keymaster

    No need to try to un-hook where BuddyPress adds it. The body_class filter passes an array of class filters. I’d just filter it, and find and unset the no-js class you don’t want.

    #279780

    In reply to: https

    Paul Wong-Gibbs
    Keymaster

    Nope. Try it and if you find an issue with BuddyPress after doing so, then start a discussion.

    #279779
    Paul Wong-Gibbs
    Keymaster

    @whoweez This old code sample does nothing much at all. I’m not sure what the intent was, this is basically debugging. To answer your specific question:

    I thought “__return_false” on “bp_email_use_wp_mail” should prohibit any BP emails from being sent in the first place as the new class should handle the email sending process…?

    If that filter returns true, then BuddyPress generates a plain text version of the email, and calls WordPress’ wp_mail() function. By default, this is false, but it returns true if wp_mail_content_type() has been configured for HTML, or if wp_mail() has been redeclared (it’s a pluggable function).

    That last bit is key. A lot of email plugins for WordPress re-declare wp_mail(), so for BuddyPress to use those plugins, the default behaviour is to send that plain text version of that email.

    If bp_email_use_wp_mail return false, then it creates a BP_Email_Delivery object, which is what that second filter is changing, which delivery class BuddyPress uses. Inside that class’ bp_email() method is where you would create a custom integration with your Sendmail plugin (or however you approach that integration).

    #279778
    Paul Wong-Gibbs
    Keymaster
    #279773
    whoweez
    Participant

    Hi @djpaul,

    I’m playing around with the above code, but adding it to the functions.php file does not prohibit the buddypress email from sending!?

    Furthermore, using sendgrid’s plugin and provided transactional template ID field does not solve anything as only the template without any buddypress/or wordpress related email content is sent – due to no relational placeholders set.

    My aim is to use a custom transactional template at sendgrid for all wordpress and buddypress related content, but from some of your conversations on this I thought “__return_false” on “bp_email_use_wp_mail” should prohibit any BP emails from being sent in the first place as the new class should handle the email sending process…?

    Could you perhaps give more guidelines as to why buddypress emails are still sending with this implemented:

    add_filter( 'bp_email_use_wp_mail', '__return_false' );
    add_filter( 'bp_send_email_delivery_class', function( $delivery_class ) { 
        return 'Implementwpemailbp'; 
    } );
    class Implementwpemailbp implements BP_Email_Delivery{
      public function bp_email(BP_Email $email){
      //add_filter('wp_mail_content_type', 'set_html_content_type');
    
      //wp_mail($to, $subject, $message, $headers = '', $attachments = array())
    
      //remove_filter('wp_mail_content_type', 'set_html_content_type');
      var_dump($email);
      }
    }

    Really appreciate your help 🙂

    Kind Regards,
    Wzz

    corsi159
    Participant

    Hello,

    I configured the WP Mail SMTP plugin, and tested it properly with their embedded test-email. This plugin is linked to a Gmail account. Whenever I send a mail, I can see a trace of it in my Gmail “sent box”.

    But when someone registes to my site (using buddypress), I can see that the registration mails are sent through the old mail config (via my web host), not through WP Mail SMTP.

    Is there anything I have to do to “tell” Buddypress to use WP Mail SMTP?

    I’m using :
    – Buddypress 3.2.0
    – WP Mail SMTP 1.3.3
    – WordPress 4.9.8

    My website : http://www.merciki.be

    Thanks in advance for your help!

    #279771
    shanebp
    Moderator

    BuddyPress does not include member galleries.
    You should submit your issue to the creators of the plugin or theme that you are using for member galleries.

    #279727

    In reply to: Remove Name Header

    Prashant Singh
    Participant

    Hi,

    You have to check current component using the function bp_current_component() and you can find the component list here https://codex.buddypress.org/developer/bp-is-active/

    Thanks

    #279725
    Prashant Singh
    Participant

    Hi,

    You need to find the file cover-image-header.php and override it in your child theme then just after the avatar code you have to call the function https://buddypress.org/support/topic/bp_get_profile_field_data-2/

    Thanks

    #279724
    Prashant Singh
    Participant

    This is strange because this works for me really well with twenty-seventeen and BuddyPress.

    #279717
    Prashant Singh
    Participant

    Hi,

    You can use this function bp_get_displayed_user_fullname() to do so.

    Also, please check these plugins: https://buddydev.com/plugins/bp-username-changer/ and https://wordpress.org/plugins/buddypress-usernames-only/

    #279702
    Prashant Singh
    Participant
    #279699
    wordupwade
    Participant

    @Commandrea – After adding the patch in Paid Memberships Pro – BuddyPress Add On, did the automatic friend requests disappear, or did you have to do something else to eliminate the automatic friend requests?

    #279697
    Prashant Singh
    Participant

    Hi, elizat801

    It seems like your theme or any third party plugin is creating the issue there. It works fine with the default theme like twenty-seventeen.

    You can take a backup of the site and then check by enabling default theme and if the button appears then certainly you have to ask your theme devs to check once. If the theme looks fine then try disabling plugins, except BuddyPress, one by one to check which one caused the issue.

    Thanks

    #279690
    Prashant Singh
    Participant
    #279681
    3diuk
    Participant

    Ok, I found the problem. Clicking on Author’s names was actually linking to:

    renderwars.xyz/author/michael

    when it should have been linking to:

    renderwars.xyz/members/michael

    for buddypress to work properly I had to create a child theme and then add a redirect rule in the child themes functions.php file.

    For anyone else with the same problem who might not be too good at php etc, here’s the instructins I found to help me:

    Creating a child theme:

    https://codex.wordpress.org/Child_Themes

    and then putting this code in the function.php:

    add_filter( 'author_link', 'change_author_link', 10, 1  );
    
      function change_author_link($link) {
       $username=get_the_author_meta('user_nicename');
    
      $link = 'http://example.com/members/' . $username;
       return $link;
     }
Viewing 25 results - 5,651 through 5,675 (of 68,948 total)
Skip to toolbar