Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 1,276 through 1,300 (of 69,119 total)
  • Author
    Search Results
  • pieheartstudio
    Participant

    Hello,

    I’m working on a site for a charity, it’s in development at the moment. I’m using buddybuilder pro with Elementor to create custom Buddypress pages for Groups and Members listings.

    On these listings pages, each member/group should be displayed in lists of 3 columns with space in between. Occasionally it will display properly, but most of the time it ignores my settings and displays all the members/groups squashed up together with no space in between.

    I’m using buddypress version 11.1.0, and WordPress 6.1.1

    Elementor Hello theme is installed, and the problem persists when I switch to one of the WordPress default themes.

    I’ve disabled all plugins one by one except for the necessary ones (Elementor, BuddyPress, Buddybuilder) and the problem persists.

    This is a link to the ‘members’ page – usually only logged in members would be able to see the members list but I’ve enabled guests to be able to see it for testing: https://bethr22.sg-host.com/members/

    If anyone has any insights I’d be very grateful… I just can’t figure out what’s causing the display issues!

    #328545
    Earl_D
    Participant

    I am trying to incorporate the new request membership feature that has admin approval of all membership. But it is confusing. It seems that instead of having anyone can register selected in the vernal wordpress setting that needs to be unchecked. Then that allowed the Buddypress option to be set for admin approval though the manage signup

    Is that correct? I am having a hard time getting it to work. Any advise or input is appreciated. I would prefer to use this np built in feature instead of using a plug-in

    ashankrao
    Participant

    Hello Team,

    Whenever any user registers on the website, they get a welcome email from BuddyPress. I want to disable that default welcome email. I’ve tried using plugins and some custom code but the problem was not solved. Is there any way to deactivate that email? The code I tried was:

    “add_filter(‘wpmu_welcome_notification’, ‘__return_false’ );”

    Looking for help
    Thank you

    #328533
    HerveSLT
    Participant

    Hello,

    I would like to change the default Buddypress avatar type.
    In bp-core-avatars.php, “bp_core_fetch_avatar” function is set to “thumb”.

    How to set to “Full” in my theme ?

    Thanks for your help !

    #328521
    Mathieu Viet
    Moderator

    Hi @mikealan,

    When viewing the Groups directory, there’s a dynamic navigation to display all public groups, the groups of the logged in user or create a new group. JavaScript is used by BuddyPress to dynamically load the groups list when one of the first two navigation items are clicked.

    All groups

    Above the All groups tab is active and all public groups are displayed. When I click on the “My Groups” tab, here’s what I get with latest WordPress & BuddyPress (and no other plugins).

    Mine

    If the content is not refreshed for you, try to deactivate all your plugins (except BuddyPress), rename the file /wp-content/plugins/bp-custom.php to something else if it exists and activate a default WordPress theme like Twenty Twenty-Two. Once done, test again.

    If the issue is still there, open your browser console to see if there’s a JavaScript error. If so, could you copy its content here?

    #328516

    In reply to: Group blog plug-in

    erich199
    Participant

    The only one I’ve ever seen was BuddyPress Groupblog but it seems abandoned now.

    Maybe a current plugin developer can fork it and update it?

    BuddyPress Groupblog

    #328510
    ctiedje
    Participant

    I recently added BuddyPress to an existing site for my Scout troop, but for some reason the registration fields do not function. The fields show up, but are not editable. I’ve been digging for documentation to help troubleshoot this, but I cannot find anyone else with the same problem. HELP!

    #328506
    vtclub
    Participant

    We use BuddyPress (Version 11.1.0) with WordPress 6.1.1. On our site, members are able to log in and then post their notes (i.e. blogs” to their accounts. However, some members are no longer able to see previous notes their posted when they log in. However, we can see them on our end on the dashboard (but also can’t see them on their account).

    Some members are also reporting a 500 error message when they go to their notes section or a message that they have not posted anything (which isn’t true since they have posted several notes that were showing up previously).

    This just started happening so we are wondering if it was due to an update?

    Thank you for any advice!

    #328485
    mistsol
    Participant

    Hi. I’ve faced the eamil notifications not working issues in buddypress.
    I Solved
    3 Things you can do.
    1.Activate SMTP using “easy WP SMTP” plugin to actiavte your own SMTP.
    2. Check WP Dashboard > Email . There should be many emails list added if not ( it’s empty )
    Restore it from
    3. Tools >> BuddyPress >> Reinstall emails (delete and restore from defaults).

    Or Add your custom new email templates in it and Select a “Situation” for each email.

    Hope so it will help

    #328480
    Moench87
    Participant

    Hi, after installing buddypress, Thrive Themebuilder does no longer loading the page template. Can someone help me?

    Wordpress 6.1.1.
    Buddypress 11.1.0
    The site is in maintenance mode

    David

    lbnn
    Participant

    Hello,

    I modified the profile-loop.php file some time ago to hide profile fields that are empty but my code doesn’t work anymore, has any change been done to the code some updates ago ?

    Here is what I modified :

    <h2 class="screen-heading view-profile-screen"><?php esc_html_e( 'View Profile', 'buddypress' ); ?></h2>
    
    <?php bp_nouveau_xprofile_hook( 'before', 'loop_content' ); ?>
    
    <?php if ( bp_has_profile('hide_empty_fields=0') ) : ?>
    
    	<?php
    	while ( bp_profile_groups() ) :
    		bp_the_profile_group();
    	?>
    
    		<?php if ( bp_profile_group_has_fields() ) : ?>
    
    			<?php bp_nouveau_xprofile_hook( 'before', 'field_content' ); ?>
    
    			<div class="bp-widget <?php bp_the_profile_group_slug(); ?>">
    
    				<h3 class="screen-heading profile-group-title">
    					<?php bp_the_profile_group_name(); ?>
    				</h3>
    
    				<table class="profile-fields bp-tables-user">
    
    					<?php
    					while ( bp_profile_fields() ) :
    						bp_the_profile_field('hide_empty_fields=0');
    					?>
    
    						<?php if ( bp_field_has_data() ) : ?>
    
    							<tr<?php bp_field_css_class(); ?>>
    
    								<td class="label"><?php bp_the_profile_field_name(); ?></td>
    
    								<td class="data"><?php bp_the_profile_field_value(); ?></td>
    
    							</tr>
    							
    						<?php elseif ( !bp_field_has_data() ) : ?>
    						
    							<tr<?php bp_field_css_class(); ?>>
    
    								<td class="label"><?php bp_the_profile_field_name(); ?></td>
    
    								<td class="data"><?php bp_the_profile_field_value(); ?></td>
    
    							</tr>
    							
    						<?php endif; ?>
    
    						<?php bp_nouveau_xprofile_hook( '', 'field_item' ); ?>
    
    					<?php endwhile; ?>
    
    				</table>
    			</div>
    
    			<?php bp_nouveau_xprofile_hook( 'after', 'field_content' ); ?>
    
    		<?php endif; ?>
    
    	<?php endwhile; ?>
    
    	<?php bp_nouveau_xprofile_hook( '', 'field_buttons' ); ?>
    
    <?php endif; ?>
    
    <?php
    bp_nouveau_xprofile_hook( 'after', 'loop_content' );
    

    Can someone help me to hode those fields again please 🙂

    #328458
    waltervl
    Participant

    Just bumped into this discussion as I had the same issue. I came across another discussion that had a fix by adding a function in the functions.php https://buddypress.trac.wordpress.org/ticket/7473

    That helped me fix this issue.

    #328454

    In reply to: BuddyPress 11.1.0

    Try IT Works
    Participant

    I’m not sure why my last comment isn’t being approved, but I need help with buddypress 11.1 in wordpress. It’s displaying a warning error on my website. If I could upload a screen shot to show what I mean, I would. But for now, I’ll just write out what the error message says.

    “Warning: Undefined array key 731 in /homepages/40/d950647655/htdocs/clickandbuilds/tryitworks/wp-includes/nav-menu-template.php on line 211”

    Anonymous User 18187419
    Inactive

    Hi kp,

    yes I’m with ya on keeping extra plugins to a minimum.

    Code published here…

    https://easywebdesigntutorials.com/hide-buddypress-pages-and-bbpress-forums-from-not-logged-in-users/

    …with minor modification (to remove bbpress check) seems to achieve what you want, as per below:

    function ps_guest_redirect() {
         global $bp;
      if ( bp_is_user() ) {
          if(!is_user_logged_in() and !bp_is_register_page() and !bp_is_activation_page()) {
               wp_redirect('https://google.com');
      exit;
          }
      }
    }
    add_filter( 'get_header','ps_guest_redirect',1);
    Anonymous User 18187419
    Inactive

    This free plugin should work for you:

    BuddyPress Members Only

    #328432
    Mathieu Viet
    Moderator

    Hi @munklefish

    I was able to see the error message. You should rename /.../wp-content/plugins/bp-custom.php to /.../wp-content/plugins/bp-custom-erroring.php so that BuddyPress does not load it. The issue is with this custom file you added. This file is using a function that is not available when it tries to (undefined function is_site_admin() in /.../wp-content/plugins/bp-custom.php at line 44).

    jeanb11
    Participant

    WordPress 6.1.1
    BuddyPress 11.0.0
    Theme : BuddyX Pro

    Hi,
    I installed the 11.0.0 today but I have some problem with the groups cover images. In the activities of my groups, the cover images are no longer displayed. They are then replaced by a standard image (placeholder.svg) from my BuddyX Pro theme.
    Please note that the cover images are displayed correctly on the group page. My problem happens on the Group Activities block where this cover image does not seem to be displayed correctly, Whereas with version 10.6.0 it is displayed.

    Any idea of the difference between 10.6.0 and 11.0.0 which could create my bug?
    Thanks for any help!

    #328411
    Phill Healey
    Participant

    With the 2023 theme and only BuddyPress active, I am still unable to login to the site.

    My setup is this:
    Hosting: Siteground
    WP Type: Single site
    WP Version: 6.1.1
    BuddyPress: v11.0.0

    The issue does not occur when using BP v10.6.

    P.s. Adding my logs to a comment here prevents me from posting. Adding my logs to an existing post causes the post to delete. Is there another way I can send the info to you?

    noobdeveloper
    Participant

    Are there any buddypress branded login plugin free alternatives or anything that can stop my login page from being directed to wp-login.php?

    #328401
    Mathieu Viet
    Moderator

    Hello @munklefish

    Have you tried deactivating all plugins except BuddyPress and activating a WordPress default theme like Twenty Twenty-Three to be sure it’s a BuddyPress issue?

    If so, what’s your setup?
    WordPress Multisite or not? WordPress version?
    If Multisite how BuddyPress has been activated? Network wide, on a specific site of the network?
    PHP version?
    Finally, could you check the error_log file of your server?

    #328396
    glennizen
    Participant

    WordPress Version 6.1.1
    BuddyPress Version 11.0.0

    Home

    I’m having a problem implementing BuddyPress on my site. Everything works fine except for Reply to Private Message. When click on Send Reply btn, it errors out: “Your reply was not sent. Please enter some content.” There is content. Please advise. Thank you.

    #328392
    Phill Healey
    Participant

    I’m also getting the log-in issues since the update to v11.0.0.

    The login screen just displays the following message:
    “There has been a critical error on this website. Please check your site admin email inbox for instructions. Learn more about troubleshooting WordPress.”

    Nothing appears in the Debug log to indicate what the issue is.

    Deactivating BuddyPress re-enables the WP login, but BP is needed for a huge chunk of the site functionality so disabling is not a realistic option for us.

    centrowebs
    Participant

    Hi, I have the latest version installed and I am encountering this error in several community profiles:


    Warning: sprintf(): Too few arguments in /furanet/sites/mydomain.com/web/htdocs/wp-content/plugins/buddypress/bp-blogs/bp-blogs-activity.php on line 233

    #328369
    sina780
    Participant

    To disable seeing other members’ pages in BuddyPress, you can use the following steps:

    Log in to your WordPress admin dashboard.

    Navigate to the “Settings” section, then select the “Privacy” tab.

    Under the “Members” section, select the option “Only allow site administrators to view member profiles.”

    Click “Save Changes” to apply the setting.

    With this setting enabled, only site administrators will be able to view member profiles. Regular members will not be able to access other members’ pages.

    Note: These instructions are based on BuddyPress version 7.0 and higher. If you are using an older version of BuddyPress, the steps may be different. Also, make sure to take a backup of your site before making any changes.

    imanakame
    Participant

    Hi.

    Is there any way to prevent other members of BuddyPress from seeing the page?

    e. g)
    If my name is imanakame

    If imanakame access it
    http:localhost/members/imanakame/ → access ok
    http:localhost/members/tanaka/ → access ng

    If tanaka accesses it
    http:localhost/members/imanakame/ → access ng
    http:localhost/members/tanaka/ → access ok

    thank you.

Viewing 25 results - 1,276 through 1,300 (of 69,119 total)
Skip to toolbar