Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,701 through 3,725 (of 73,371 total)
  • Author
    Search Results
  • Mathieu Viet
    Moderator

    Hi @alexhal

    The 6.3.0 milestone still has issues to fix see: https://buddypress.trac.wordpress.org/query?status=reopened&status=assigned&status=reviewing&status=new&status=accepted&group=status&milestone=6.3.0

    We’ll try to fix them and package the 6.3.0 release early next week, but please understand the Members of the BuddyPress Core Team are volunteers that freely give their time to the BuddyPress open source project and do their best for all BuddyPress users.

    Thanks in advance for your understanding.

    #313774
    havealookhere
    Participant

    Hello,

    After reading I think all of the forum post about this matter till ten years ago the issue I have is driving me nuts.

    I want to have the possibility to remove the sidebar on certain buddypress pages. Especially from the members page.

    So first I went into the page in the wordpress dashboard and switched the setting no sidebar on. When the page is not connected to a buddy press page the sidebar is gone. But, when i connect it to a buddypress page like members then the sidebar is back. I tried several setting, like full width, no sidebar, etc but everytime I make it a buddypress page in the buddypress settings the sidebar is back.

    Then I tried to make a child theme. I did put the buddypress nouveau part in the child theme, copied the members/index.php and members/members-loop.php into the sidebar. I saw this in the buddypress forum off two years ago. Then when editing the files, there is not a call to a sidebar so i cannot remove it.

    The index.php looks like this:

    <?php bp_nouveau_before_members_directory_content(); ?>
    
    	<?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>
    
    		<?php bp_get_template_part( 'common/nav/directory-nav' ); ?>
    
    	<?php endif; ?>
    
    	<div class="screen-content">
    
    	<?php bp_get_template_part( 'common/search-and-filters-bar' ); ?>
    
    		<div id="members-dir-list" class="members dir-list" data-bp-list="members">
    			<div id="bp-ajax-loader"><?php bp_nouveau_user_feedback( 'directory-members-loading' ); ?></div>
    		</div><!-- #members-dir-list -->
    
    		<?php bp_nouveau_after_members_directory_content(); ?>
    	</div><!-- // .screen-content -->
    
    	<?php bp_nouveau_after_directory_page(); ?>
    

    the only reference to the sidebar is <?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>

    When I delete this it breaks the website.

    Now I am stuck on this. I think it is not that diffucult but some way some how i cannot find the way to remove the side bar.

    So please… please can someone point me in the right direction?? I use the Astra theme!!

    #313772
    shanebp
    Moderator

    These are the forums for BuddyPress, not BuddyBoss.
    Please contact BuddyBoss with questions about their products.

    #313770
    paulmtilley
    Participant

    Hi. In my feed page I just get “Loading community updates. Please wait.” and nothing else. I have loaded ‘fake’ activity but its just not showing. I have tried this after turning off all non-buddypress plugins and still the same . I have also given it a go in Twenty Twenty.

    I’m using:

    WP Version 5.5.1
    BuddyBoss ChildVersion: 1.0.0
    BuddyBoss Platform Version 1.5.0
    BuddyBoss Platform Pro Version 1.0.4

    #313769
    Tim
    Participant

    A new member joined in a Group. I replied to this welcoming her. She attempted to reply and received an error message.

    The message appears below the Post button and simply states: There was an error posting your reply. Please try again.

    She has tried multiple times and receives the same message. I have tried to recreate the error and cannot. She did send me a screenshot if it is needed.

    Any ideas what is causing the problem?

    BuddyPress Version 6.2.0
    WordPress Version 5.5.1

    #313763
    FTLRalph
    Participant

    Hey all, I’m trying to start the process of redesigning an old Buddypress installation using the legacy theme.

    I want to update to bp-noveau, so I’ve dumped the /bp-templates/bp-noveau/ files into my theme into a /buddypress/ folder and all is working fine

    However, it is extremely barebones. The CSS is, well…oof.

    Does anyone know of a “very simple” (free) bp-noveau theme I can use and build off of? Basically something that already has a very solid design base, but not crazy complex where editing it is a massive hassle.

    #313747
    ardityad
    Participant

    Hi buddypress,
    I just install new theme and theme have buddypress on it. i just realize there is issue when user register.
    User can receive email contain link and key but when actiavtion link click nothing happen user stil on pending.

    Can you help me with this problem ?

    #313746
    judymacmahon
    Participant

    Hello
    I’m using 2.6.0 BuddyPress and 5.5.1 WordPress
    I CAN NOT upload profile photos – extended profile.
    The EDIT PROFILE PHOTO link will not open.

    Code looks like this:
    <
    a href=”#TB_inline?width=800pxpx&inlineId=bp-members-avatar-editor&width=641&height=526″>Edit Profile Photo<
    /a>

    Urgent assistance appreciated.
    Judy

    #313743
    Ryan Bickett
    Participant

    Hello Mirko. Unfortunately, I don’t have an answer to your question. However, I wanted to reach out because I am looking into adding video conferencing functionality to a site I am working on. I was looking at using BuddyMeet with BuddyPress as well. So, I am curious if you were able to get this sorted out? I am also curious about your feedback on the use of BuddyMeet? Is it working for you? Are there any other video conferencing plugins you’ve looked into? Thanks in advance.

    merpo
    Participant

    Hello! I’m having a hard time finding a solution to this issue. When I create a subnav tab, the new post/comment box is missing. Any help is appreciated!

    function buddypress_tab() {
        global $bp;
        $parent_slug = 'activity';
        
        //Add 'all activity' subnav item    
        bp_core_new_subnav_item( array( 
            'name'            => __( 'All Activity'), 
            'slug'            => 'all_activity', 
            'parent_url'      => $bp->loggedin_user->domain . $parent_slug.'/', 
            'parent_slug'     => $parent_slug, 
            'screen_function' => 'buddypress_all_activity',
            'position'        => 10
        ) );
    }
    add_action( 'bp_setup_nav', 'buddypress_tab' );
    
    function buddypress_all_activity () {
        add_action( 'bp_template_title', 'buddypress_all_activity_title' );
        add_action( 'bp_template_content', 'buddypress_all_activity_content' );
        bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }

    working
    notworking

    Apparently I don’t know how to attach images.

    #313737
    ziseshiya
    Participant

    Buddypress is a necessary plug-in for the theme of my website. I used to use the 6.0.0 version of buddypress. After upgrading to 6.2.0, I found that the website crashed, so I manually deleted the plug-in folder and replaced it with the old version 6.0.0. As a result, the website still crashed and remained in the new state of 6.2.0 version.why? what should i do to modify it to return to the original normal state!?

    #313733
    neets1604
    Participant

    Hi,

    I’m having horrendous issues too from the last Buddypress update. Every single time someone creates an account with my website they receive a ‘fatal error’ message. When I manually activate a new account, I also receive a ‘fatal error’ message and an email advising that there’s a technical issue with my website. The email confirms that there’s an error with the Buddypress plugin.

    For years now, when someone clicks the activation link in my emails they are no longer taken to their user dashboard (which is what used to happen), now they are taken to a screen with a pre-populated box containing an activation link. This confuses them and I end up getting an email asking why they can’t access their account.

    As a user for the last 3 years I’d really appreciate some valuable feedback (and action!) on the above major issues.

    Thanks,
    Anita

    mq15
    Participant

    Hello there,
    As we install BuddyPress, regardless of the theme, two new widget areas appear namely:

    BuddyPress Member’s Home, and
    BuddyPress Group’s Home.

    For me, no widget placed in these widget areas appears.

    WordPress, BuddyPress and GeneratePress (theme) are all updated to latest versions.

    Please help.

    Best Regards.

    1benk1
    Participant

    Hello,
    Within the WordPress Discussion Settings there is a great option:
    “Before a comment appear: Comment author must have a previously approved comment” (checkbox).

    Unfortunately BuddyPress ignores this core-setting and it is possible to answer within the activity stream without any restrictions.

    It would be great if you can consider this option in a future version of BuddyPress to prevent spam.

    Best regards,
    Ben

    #313720
    agizzie
    Participant

    Latest versions:
    WordPress
    BuddyPress
    Twenty Seventeen theme

    Is there a way of adding a label or badge to users avatars according to their member types so when avatars are in a list you can see form their badge what member tyoe they are. Like the image below…
    avatar badge

    ThomDJ
    Participant

    Hi there,

    I have 8 private groups, each with their own private forum. Is there any way I can display forum activities like replies and created topics in the group activity stream? I would like to use ‘BuddyPress Group Email Subscription’ plugin to notify group members on forum activity relevant to their group.

    WordPress version: 5.5.1
    BuddyPress version: 6.2.0
    bbPress version: 2.6.5

    Thanks!

    #313712
    amtenbrink
    Participant

    now i found out how to make it work in my child theme (created directory: ‘buddypress’ – ‘members’ and placed the changed kopy of the template in there).

    now i’m just searching for the individual user data…

    #313710
    amtenbrink
    Participant

    Hi again,

    i found the loop-template.

    if i have made my changes, where do i store this individual template?
    if i put it in my child theme folder, it isn’t working, even if i rebuild the exact path of the buddypress directories.

    and i still didn’t find the individual user data…

    thanks!

    #313709
    amtenbrink
    Participant

    Ok, thanks!

    I’m using BuddyPress and the BeTheme

    Do i have to search the members loop template in the BuddyPress plugin directory or in the theme directory?
    could you tell me how the loop template is named?

    and where do i find the profile data?

    thanks!

    #313706
    supportnirmal
    Participant

    Our site is down due to the plugin.

    We are using PHP 7.3 with WordPress Version 5.5.

    Warning: require(/home/austr229/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php): failed to open stream: No such file or directory in /home/austr229/public_html/wp-content/plugins/buddypress/class-buddypress.php on line 466

    Warning: require(/home/austr229/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php): failed to open stream: No such file or directory in /home/austr229/public_html/wp-content/plugins/buddypress/class-buddypress.php on line 466

    Fatal error: require(): Failed opening required ‘/home/austr229/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php’ (include_path=’.:/opt/alt/php73/usr/share/pear’) in /home/austr229/public_html/wp-content/plugins/buddypress/class-buddypress.php on line 466

    Please help!

    alexhal
    Participant

    Thanks for the reply but our product is based on buddypress and we are using bp_send_email function to send various custom registered emails.
    The issue is that our customers are getting this error and we cannot recommend end user to apply patches .
    So I request to release a small update for this fix so that we can ask our users to simply update buddypress plugin

    #313691

    In reply to: Link to Profile Edit?

    Jennifer Moss
    Participant

    I realized that I need to use the SCREEN OPTIONS pulldown at the top of MENU SETUP to enable the BuddyPress menu elements. Thanks.

    #313687
    shanebp
    Moderator

    Are you using BuddyPress or BuddyBoss ?
    Are you using some theme that shows the members in a grid?

    You need to find the members loop template and use or add a hook in that template so that you can generate the display of profile data in that area.

    alexhal
    Participant

    When is PHPMailer issue is going to fix , we are waiting for update for this.

    https://buddypress.trac.wordpress.org/ticket/8347

    Please release the update for this as we have our system dependant on buddypress

    #313682
    lukejacksonvgon
    Participant

    Hi, I’m looking for a suitable group plug-in for a website so hope you can help. I’m very new to Buddypress so apologies if this question has already been answered.

    Is it possible to download documents (particularly interested in PDF, Word and Excel) from a Group page/wall using Buddypress? The examples I’ve seen so far do not have any examples of this unfortunately.

    Thanks in advance,
    Luke

Viewing 25 results - 3,701 through 3,725 (of 73,371 total)
Skip to toolbar