Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 326 through 350 (of 7,560 total)
  • Author
    Search Results
  • #312584
    Varun Dubey
    Participant
    #312574
    bigealien
    Participant

    Hello,

    I have BuddyPress and BBpress installed on my site: siliren.com
    In my Buddypress Settings, I have ‘Allow Registered Users to Upload Avatars’ checked and enabled. I do not have ‘Allow Registered Users to Upload Cover Images’ checked.

    Despite this setting being enabled, my users cannot find a button or option to upload a profile picture. If I enable the Cover Images option then there is a button and I can successfully upload a cover image. If both are checked then the option to upload a cover image still exists and works, but still no option to upload an avatar picture.

    Any advice on this? i will provide what information I can, however I am completely knew to building a site with basically no knowledge and am teaching myself through trial and error, so I ask for your patience, thank you!

    shanebp
    Moderator
    Kenneth Hooks
    Participant

    HI

    Today morning, I have instill BBPress for my WordPress website, but after instill the plugin my website home page showing a 500 internal server error.
    here My website home page: https://truviewtv.com

    I have Godaddy managed wordpress hosting.
    i have uninstalled the plugin but still showing 500 internal server error, i already contact Godaddy support.
    someone please suggest me

    Thanks

    Andrea
    Participant

    How can I enable a non-admin user to moderate buddypress activities without let him using admin backend panel?

    alwaysalready
    Participant

    I found a way to resolve this problem using a mixture of ideas others have shared (including @6logics and @loveplove). I’ve put the details in a blog post here. In summary, what worked for me was the following in the bp-custom.php file:

    // Set BP to use wp_mail
    add_filter( 'bp_email_use_wp_mail', '__return_true' );
     
    // Set messages to HTML
    remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
    add_filter( 'wp_mail_content_type', 'set_html_content_type' );
    function set_html_content_type() {
        return 'text/html';
    }
     
    // Use HTML template
    add_filter( 'bp_email_get_content_plaintext', 'get_bp_email_content_plaintext', 10, 4 );
    function get_bp_email_content_plaintext( $content = '', $property = 'content_plaintext', $transform = 'replace-tokens', $bp_email ) {
        if ( ! did_action( 'bp_send_email' ) ) {
            return $content;
        }
        return $bp_email->get_template( 'add-content' );
    }
    //Optionally remove the filter above after it's run
    remove_filter('wp_mail','redirect_mails',20);
     
    // Optionally change your email address
    add_filter('wp_mail_from','noreply_from');
    function noreply_from($from) {
      return 'noreply@YOUR_DOMAIN.org'; //Replace 'YOUR_DOMAIN.org' with email address
    }
    
    // Optionally change your from name
    add_filter('wp_mail_from_name','noreply_from_name');
    function noreply_from_name($name) {
        return 'YOUR_DOMAIN No-Reply'; //Replace 'YOUR_DOMAIN No-Reply' with the from name
    }
    #312405
    alwaysalready
    Participant

    I found a way to resolve this problem using a mixture of ideas others have shared elsewhere. I’ve put the details in a blog post here. In summary, what worked for me was the following in the bp-custom.php file:

    // Set BP to use wp_mail
    add_filter( 'bp_email_use_wp_mail', '__return_true' );
     
    // Set messages to HTML
    remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
    add_filter( 'wp_mail_content_type', 'set_html_content_type' );
    function set_html_content_type() {
        return 'text/html';
    }
     
    // Use HTML template
    add_filter( 'bp_email_get_content_plaintext', 'get_bp_email_content_plaintext', 10, 4 );
    function get_bp_email_content_plaintext( $content = '', $property = 'content_plaintext', $transform = 'replace-tokens', $bp_email ) {
        if ( ! did_action( 'bp_send_email' ) ) {
            return $content;
        }
        return $bp_email->get_template( 'add-content' );
    }
    //Optionally remove the filter above after it's run
    remove_filter('wp_mail','redirect_mails',20);
     
    // Optionally change your email address
    add_filter('wp_mail_from','noreply_from');
    function noreply_from($from) {
      return 'noreply@YOUR_DOMAIN.org'; //Replace 'YOUR_DOMAIN.org' with email address
    }
    
    // Optionally change your from name
    add_filter('wp_mail_from_name','noreply_from_name');
    function noreply_from_name($name) {
        return 'YOUR_DOMAIN No-Reply'; //Replace 'YOUR_DOMAIN No-Reply' with the from name
    }
    #312403
    alwaysalready
    Participant

    I found a way to resolve this problem using a mixture of ideas, including the suggestions from @bharat and @vbnr. I’ve put the details in a blog post here. In summary, what worked for me was the following in the bp-custom.php file:

    // Set BP to use wp_mail
    add_filter( 'bp_email_use_wp_mail', '__return_true' );
     
    // Set messages to HTML
    remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
    add_filter( 'wp_mail_content_type', 'set_html_content_type' );
    function set_html_content_type() {
        return 'text/html';
    }
     
    // Use HTML template
    add_filter( 'bp_email_get_content_plaintext', 'get_bp_email_content_plaintext', 10, 4 );
    function get_bp_email_content_plaintext( $content = '', $property = 'content_plaintext', $transform = 'replace-tokens', $bp_email ) {
        if ( ! did_action( 'bp_send_email' ) ) {
            return $content;
        }
        return $bp_email->get_template( 'add-content' );
    }
     
    // Optionally change your email address and from name.
    add_filter('wp_mail_from','noreply_from');
    function noreply_from($from) {
      return 'noreply@YOUR_DOMAIN.org'; //Replace 'YOUR_DOMAIN.org' with email address
    }
     
    add_filter('wp_mail_from_name','noreply_from_name');
    function noreply_from_name($name) {
        return 'YOUR_DOMAIN No-Reply'; //Replace 'YOUR_DOMAIN No-Reply' with the from name
    }
    shameem5566
    Participant

    I have to hide some nav menus of bp users’ profile page from other users. I using the following function to do so. That was working fine.

    /* BuddyPress profile nav menu restrictions */

    function bpex_hide_profile_menu_tabs()
    {

    if (bp_is_active(‘xprofile’)) :

    if (bp_is_user() && !bp_is_my_profile()) {
    // BP’s profile main menu items. Comment those to show.
    // bp_core_remove_nav_item( ‘activity’ );
    // bp_core_remove_nav_item(‘profile’);
    bp_core_remove_nav_item(‘friends’);
    bp_core_remove_nav_item(‘groups’);
    // exist only if you use bbPress
    bp_core_remove_nav_item(‘forums’);
    // bp_core_remove_nav_item(‘activity’);
    bp_core_remove_nav_item(‘following’);
    bp_core_remove_nav_item(‘followers’);
    bp_core_remove_nav_item(‘bookmarks’);
    bp_core_remove_nav_item(‘activity’);

    // BP’s profile main menu items. Comment those to show.
    bp_core_remove_subnav_item(‘activity’, ‘personal’);
    bp_core_remove_subnav_item(‘activity’, ‘friends’);
    bp_core_remove_subnav_item(‘activity’, ‘groups’);
    bp_core_remove_subnav_item(‘activity’, ‘following’);
    bp_core_remove_subnav_item(‘activity’, ‘feed’);
    }
    bp_core_remove_subnav_item(‘activity’, ‘mentions’);
    bp_core_remove_subnav_item(‘activity’, ‘favorites’);

    endif;
    }
    add_action(‘bp_init’, ‘bpex_hide_profile_menu_tabs’, 15);

    I have this navigation menu for the bp user on the header by default. When I am viewing other’s profiles the nav menus inside the user’s header menu also get hidden.

    Is there any other ways to do this.

    I am using the latest version of WordPress 5.4.2, BuddyPress 6.0.0, and BuddyX Theme 1.3.7.

    #312363
    cmsplay
    Participant

    When making BP Groups, I opted not to have Fora, as I already have these set up for users in bbPress.

    BP still shows a ‘Forums’ link from the Groups page though. This is confusing for users, as there are no fora there!

    How do I set the BP Group Forums link so that it does not show?

    Thank you.

    WP v.5.4.2
    BP v.6.0.0

    #312338
    cmsplay
    Participant

    Have set up BuddyPress Groups. I opted not to have forums (fora), because I already have nice fora set up in bbPress.

    When I view a User’s BuddyPress profile, I see the user’s BuddyPress sub-menu showing :

    Home | Activity | Profile | Notifications | Messages |Friends | Groups |Forums | Settings

    When I click on ‘Forums’, a page comes up saying:

    Forum Topics Started

    Oh, bother! No topics were found here.

    …It seems as if BuddyPress is pointing the User to non-existent BP fora.

    How can I either:

    (i) HIDE the BP ‘Forums’ sub-menu item (users can access the bbPress fora from a WP widget)

    OR

    (ii) Make the BP ‘Forums’ sub-menu item link to the bbPress which I have fora already made.

    ?

    Thank you.

    #312141
    David Cavins
    Keymaster

    BuddyPress uses the WP “forgot password” system, so I’d start by looking to see if MemberPress attempts to handle that function.

    To start with, try flushing your permalinks. To do so, visit the permalinks settings screen and hit “save.”

    It does sound like a complicated setup, frankly. Could you get the result you need by just using MP and bbPress?

    #312139
    maghaseman
    Participant

    I’m using Memberpress for login form and BuddyPress for accounts with a bbpress forum. I’m not sure what’s not talking to each other properly but when I try to use the “forgot password link” it turn up a does no exist page. Does anyone know where I should start investigating the problem?

    #312138
    Nik
    Participant

    Hi there… I’m experiencing the same problem ie. bbPress Topics and Replies are showing twice in the Activity filters.

    Just a hunch but I’ve just upgraded from considerably older versions of BuddyPress and bbPress so wondering if there was some kind of data conversion in an interim version which I’ve missed.

    OP did you ever find a fix/solution?

    #312076
    kerchmcc
    Participant

    We have PMPRO (2.3.1) + Buddypress (5.2.0) + bbpress (2.6.4) + bbp style pack (4.5.3) installed.
    Buddypress 6.0 really screwed with the displays, so that got rolled back.
    WP: 5.4.1

    Buddypress shows the profiles of members
    In a member profile, there is a link to show forum (bbpress) activity.
    Cool
    If a user has a favorite or a subscription showing there, there is also an icon [x] implying that I can unsubscribe/unfavorite that item.
    However, nothing happens when that [x] is clicked.
    I don’t know who to ping about the problem.
    If it’s you, please fess up! and thanks

    Home

    Varun Dubey
    Participant

    @tskpbls, yes I am able to replicate the issue now.
    When bbPress is active, the hidden group is not visible on my-groups tabs.
    bbPress not active: https://prnt.sc/skoogl
    bbPress active: https://prnt.sc/skoovq
    Group counting still including hidden groups, but not visible in my group’s listing.
    You can report it here
    buddypress.trac.wordpress.org/report

    tskpbls
    Participant

    Ok, let’s investigate further then …

    I reinstalled default 2020 WP theme, deactivated all plugins (double checked) but bbpress and buddypress, although I’ve kept wpmu admin dashboard plugin… I am on a very fresh install (less than 24 hours)

    I am still facing the same issue :

    Link to a google drive folder with screenshots (public / private / hidden) : https://drive.google.com/drive/folders/1MWlx_eMelveGBSK_9MHEIoLd1NJRHz1D?usp=sharing

    buddypress is installed according to this codex guideline : B. Network-wide Activation – BuddyPress root blog in Secondary Site

    Buddypress seems to work ok, activity, group and email tabs under admin menu of the admin network page, main site shows forum tabs only and subsite 1 (?id=2) holds buddypress frontend pages.

    Soooo, maybe a clue here : Why does the group edit screen say “aucun forum” (no forum) attached to group when in the meantime I can see the forum tab and the input text boxes of the first subject when group is not hidden?

    Many infos here, sorry for that, but I guess I can’t be more accurate than that in my perception of the problem.

    Hope this helps you to understand the problem better.

    Thanks !

    #311894
    fr3dricks0n
    Participant

    I have a bbpress and buddypress integration at truscript.org. I need to be able to have a favorites tab on every profile with forum favorites listed. buddypress doesnt support bbpress forum favorites in user activity. please help.

    tskpbls
    Participant

    Hi there,

    I am here to report the following issue :

    On a multisite install with wp 5.4.1, with buddypress (6.0.0) & bbpress (2.6.4), setting up a forum for a group that is supposed to be hidden makes this group not accessible to admin or group creator. (Myself, as a super-admin/group creator/group admin cant reach my hidden group when bbpress is activated.)

    This occurs only when bbpress is activated multisite or single subsite and a buddypress group (buddypress installed network wide) is set to hidden. It seems to work ok with group set as private, or public.

    Can you replicate this?

    kitakitune
    Participant

    Hello! Thanks for the great plugins.
    I’m writing this question using a translation software because I’m Japanese and I don’t speak English.
    I’m sorry if it’s hard to read.

    What I want you to help me with is exactly what the title says.
    The private messaging feature, which works in legacy, doesn’t work in Nouveau.

    I first tried the contents of the two URLs below.
    It was 19 months ago, but only because it was so similar to the current situation.
    I’ve removed “https://” from the URL.

    buddypress.org/support/topic/private-message-button-not-working-right/

    buddypress.trac.wordpress.org/ticket/7908

    But since it didn’t improve, the

    I installed the version of “6.0.0-RC2” on this site to make sure that it was fixed.
    However, the situation did not change.

    I was wondering if it was something I was going through.
    I tried everything I could to stop all other plugins, verify with various themes, change the PHP version, clear the cache, reinstall, etc., but it didn’t improve.

    The Nouveau feature is great, and I’d like to be able to use it somehow.

    Please help me.

    Below.
    buddypress.org/support/topic/when-asking-for-support-2/
    I also wrote a response to the list I found in
    I’m sorry if I’m wrong in my perception.

    1. which version of WordPress are you running?

    Answer: “Version 5.4.1-en.

    2. did you install WordPress as a directory or subdomain installation?
    I did a quick install against the domain on the server.
    If the directory is installed, is it in the root or subdirectory?

    4. Have you upgraded from a previous version of WordPress? If so, from which version?
    One front.

    5. was WordPress working properly before installing/upgrading BuddyPress (BP)? Examples: permalinks, creating a new post, comments.
    It was functioning properly.

    6. What version of BP are you running?
    6.0.0-RC2.

    7.Have you upgraded from a previous version of BP? If so, from which version?
    5.2.

    Are there any plugins other than BuddyPress installed and activated? If so, which one is it?
    BuddyPress is not surprising.

    9.Are you using a standard WordPress theme or a customized theme?
    It’s standard stuff.

    10.Which theme do you use?
    TWENTY SEVENTEEN.

    11. Have you changed the core file in any way?
    No.

    Is there a custom function in bp-custom.php?
    No.

    13. if you’re running bbPress, which version is it? Or do you have bbPress built into your BuddyPress installation?
    No, I’m not using it.
    14.Please provide a list of errors in the server log file: codex.wordpress.org/Debugging_in_WordPress
    Is this it?
    Notice: Trying to access array offset on value of type int in /home/xx/tarianpapa.com/public_html/wp-includes/formatting.php on line 904

    15. Which company offers your hosting?
    //www.xserver.ne.jp/でしょうか
    16.Is the server running Windows, or if it’s Linux…Apache, nginx or something else?
    It’s a server called the X server, I think it’s Windows.
    17. Which BP theme do you use?
    If you mean NOUVEAU or Legacy, then NOUVEAU.
    18. did you overload the BuddyPress template file?
    I don’t think they did.
    19. Are there any other site customizations that you think are relevant to the problem?
    No, sir.

    Basic troubleshooting.

    BP Themes: Is this issue specific to the theme set in Dashboard->Settings->BuddyPRess->Options?
    It only happens in NOUVEAU.
    You can use the private message feature normally in Legacy.

    #311738

    In reply to: Forum Excerpt

    Karla Davisio
    Participant

    ask this on the bbPress forum

    #311682
    Varun Dubey
    Participant

    @mohantyt it’s default nature of bbPress unless you are using any moderation feature

    #311606
    shanebp
    Moderator

    For bbPress issues, please use their support forums.

    laschwi
    Participant

    Hello,
    I would need some Help with my Website. I have installed Buddypress and Bbpress to create a cool forum, however when I tried to upload a Profilpicture I cannot crop it, it appears as a little point on the side. I can only save it and the picture appears croped as Profil picture, but not like I wanted to have it.
    I am using the Theme : Dyad 2
    Can someone help me? that would be great!

    My Website: https://aybidahlson.com

Viewing 25 results - 326 through 350 (of 7,560 total)
Skip to toolbar