Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,101 through 4,125 (of 68,934 total)
  • Author
    Search Results
  • #309270
    CGC studio
    Participant

    Hi

    I use one-community theme along with buddypress and bbpress.

    How can I translate “forum moderation” email entitled “my site’s name Moderation: Flagged topic”?

    see screesnhot :
    screenshot

    This notification email deals with forum moderation so I previously thought it concerned BBpress. But BBpress support assured me that they do not have the term ‘flagged’ in it and they’re not involved.
    So, they told me to ask you directly.

    Could you tell me how and where I could perform this translation?

    TIA : )

    CGC

    #309268
    shanebp
    Moderator

    Put this in the functions.php file in your child theme or in bp-custom.php
    It will redirect visitors to the home page if they are not logged in and they try to open a member profile or the members directory.

    function seaspray_restrict_members() {
    
    	if ( bp_is_user() || bp_is_members_directory() ) {
    
    		if ( ! is_user_logged_in() ) {
    
    			wp_safe_redirect( home_url() );
    
    			die();
    		}
    	}
    }
    add_action( 'bp_ready', 'seaspray_restrict_members' );
    seaspray
    Participant

    I’m new to BuddyPress but enjoying what it can do.

    I’m creating a website/community site for a sailing club and I want to be able to restrict member profile views to cogged in members. Actually, I’d like to make the member directory private too. I can’t quite work out how to do this. In the UK (and Europe) we have strict Data Protection laws and I’m a bit surprised the default seems to be only to restrict Profile edits… Anyhow, if someone can steer me in the right direction I’d appreciate it.

    Many thanks.

    #309255

    In reply to: Custom profile page.

    nikimaria
    Participant

    I created a post about adding custom pages to buddy press, maybe it will help:
    How to Add Custom Menu Item Page Content to Buddypress Member Menus

    #309249
    Jpl75
    Participant

    HI,
    I already asked this question 4 weeks ago without answer from Buddypress support. So I try again !
    Members of my community must be connected to my site to see the members list.
    When I am connected, if I see someone connected (widget in sidebar), I click on his photo, I see his profile and “Private message” near the round photo.
    I click on “Private message” and arrive on my profile.
    I suppose that I only have to write the message. NO ! I must search the name of the person (I was on his profile just before !) and then write the subject, and the text.
    Is it the normal way or is there something wrong in my settings ?
    Thanks in advance.
    WP 5.2.4 with Twenty sixteen, Buddypress 5.0.0, https://www.alpes-spirit-chapter.com/
    Regards.

    #309229
    ripulkr
    Participant

    Try logging in from the user account. The users are recorded in BuddyPress when they first login to the site.

    #309228
    ripulkr
    Participant

    You can use BuddyPress with any theme.

    ripulkr
    Participant

    I guess this is an issue in BuddyPress. The buddypress shows repeated activities on load more because the parent activity isn’t available

    #309223

    In reply to: BP vs Ultimate Member?

    ripulkr
    Participant

    It this really a question ?

    – BuddyPress – Built and Maintained by WordPress, who work & maintain project for free.
    – Ultimate Member – Third party developer, who will bail out when the prospects of earning money are bleak.

    I have worked extensively on both addons, there’s no comparison for BuddyPress, code quality, community are amazing.

    #309219
    Brajesh Singh
    Participant

    Hi,
    What is the issue you are facing? Can you please post the error?
    I have fixed compatibility with BP Nouveau for it and will be glad to add a fix for the 7.3 too.

    You can find the update version here
    https://github.com/buddydev/buddypress-activity-plus

    Regards
    Brajesh

    John
    Participant

    Apparently a 12.6.1 bugfix release is out now that fixes the issue so you should be safe upgrading to the latest now.

    Also I meant reporting to Yoast, not BuddyPress, above!

    #309184
    glouton
    Participant

    Hi there,

    Looking for how to change the number of members displayed in the member loop I ended on this very old topic:
    https://buddypress.org/support/topic/change-the-number-of-members-to-be-displayed-per-page/

    This is obsolete and a better way to do this is now to use a filter in bp-custom.php or the functions.php of your theme as describe in the codex:

    Using bp_parse_args() to filter BuddyPress template loops

    So just posting this in an attempt to prevent others to use this old solution.
    Especially given that this old way doesn’t work with WP Rocket cache and a logged in user.

    function my_bp_members_per_page( $retval ) {
        $retval['per_page'] = 24;
    
        return $retval;
    }
    add_filter( 'bp_after_has_members_parse_args', 'my_bp_members_per_page' );

    Regards,

    John
    Participant

    This issue is caused by Yoast SEO update. Either disable Yoast SEO or downgrade it to v12.5.1 and the site should work again.

    I have reported this issue to buddypress on the Yoast WordPress support forum.

    mickysoft
    Participant

    According to a supporter at my hoster “siteground” probably a Synatxfehler occurred in the core of Buddypress the error when accessing the admin dashboard out.

    #309179
    Brajesh Singh
    Participant

    Hi,
    I am not aware of any free theme currently but it is going to change in 2020.

    We are looking forward to change this completely from 15th January onward. We will provide you with multiple free themes(1st releasing on 15th January). I am looking forward to help make BuddyPress experience pleasant and smooth.

    Regards
    Brajesh

    #309178
    Brajesh Singh
    Participant

    Hi
    We are in the process of releasing a free theme for BuddyPress which should compete with any available premium theme on design/quality.

    Since the holidays are here, we are scheduling for 15th January. I am hoping to encourage BuddyPress adoption with our free theme.

    Regards
    Brajesh

    mickysoft
    Participant

    Hi,
    I suddenly get the error when logging in: Error thrown – Call to a member function format () on boolean.
    Unfortunately, I can not do that because I’m not a programmer. The funny thing is that I was easily logged in and four hours later, the next time you log in, the error message, although on the side has not changed.
    Who can help me?
    Greetings
    Joachim

    http://www.vhsfotoclub.de
    Wordpress 5.3–de_DE
    Buddypress Version 5.0.0
    PHP Version : 7.1.33 / 64Bit OS
    Thema Twenty SeventeenVersion: 2.2

    #309169
    #309165
    ekadevau
    Participant

    Hello David, wow, I found a real bug 😉 Thanks for the patch.

    I’m not completely familiar with the Buddypress update scheme – will this patch automatically be in the next update? In this case, I’d hack the patch into the plugin core (I have no choice anyway than doing so, do I?)

    Regards,
    eka

    danielle1929
    Participant

    Hello,

    There’s a problem with my Buddypress activity feed, after clicking “Load More”, the same contents shows and shows. It just keeps on repeating and I can’t see the users other content anymore. Please help.

    #309160
    David Cavins
    Keymaster

    Thanks for your report! I’ve created a ticket with a patch that corrects the behavior here: https://buddypress.trac.wordpress.org/ticket/8167

    #309159
    shanebp
    Moderator

    You may have found a bug.
    You can open a ticket here.

    #309158
    caaprichos
    Participant

    Hello! I am creating a social network with buddypress 5.0 and last wordpress update with the theme went and Seventeen Version: 2.2 and I am creating custom fields and I need to put photo gallery and video in the custom profile fields for the professional profile and the user profile! Is there any way or plugin that can put photo and video gallery? Please help

    #309157
    shanebp
    Moderator

    Using the proper hook always helps. Can be tricky to figure out.

    This is not up to date or comprehensive, but should help: bp hook order

    #309156
    caaprichos
    Participant

    462/5000
    Hello! I am creating a social network with Buddypress 5.0 with the latest WordPress update! In the Twenty Seventeen Version: 2.2 theme in the user profile that I have created and professional does not allow me to write a post from the profile itself instead of from the start or home page of the social network! How can I do so that both profiles (user and professional) can be written from the profile as or similar to Facebook?

Viewing 25 results - 4,101 through 4,125 (of 68,934 total)
Skip to toolbar