Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 1,226 through 1,250 (of 69,016 total)
  • Author
    Search Results
  • #329939
    andrew90
    Participant

    Running Buddypress 11.2.0 with WP version 6.2.2 and Woffice theme 5.1.9

    #329904

    In reply to: Hide pages/content

    Venutius
    Moderator

    Here’s a plugin you could try, there’s a quite a few that will hide/redirect access requests to the signup page so you may want to do some research.

    BuddyPress Members Only

    #329901
    flamuren
    Participant

    Hi,

    I am building a membersite using buddypress, bbpress and package it with buddyx theme.

    If I visit as non-logged in I can see activites, forums, member etc. Is it possible to somehow block that? Perhaps re-direct to a login/register page as facebook does?

    Best regards,

    flamuren

    #329885
    wouterrommel
    Participant

    My theme is showing Buddypress comments in the wrong order:

    Activity
    -Comment3
    -Comment2
    -Comment1

    Is there a way to change this to the logical

    Activity
    -Comment1
    -Comment2
    -Comment3

    #329870
    Steel Rat
    Participant

    I also see no settings even remotely close to what you’re saying, @brycejune.

    The widget has no role settings, and the Buddypress settings page has two options for Activity:

    Post Comments: Allow activity stream commenting on posts and comments
    Activity Auto-Refresh: Automatically check for new items while viewing the activity stream

    There are no role-related settings for BP that I can see anywhere. Please elaborate and provide specifics/screenshots if possible.

    Now, I assume the Latest Activity widget is supposed to show the same info as sitename.com/activity, which does show all the latest activity. Is this not correct?

    Thanks.

    #329868
    brycejune
    Participant

    Hi @steel-rat,

    Hope so you’re doing well, if the widget is not displaying any content, there are a few factors to consider. First, make sure the widget is properly configured. Check the settings to ensure it is set to display the latest activities from the correct sources, such as forum topics and BuddyPress activities. Verify that you have selected the appropriate options and saved the changes.

    It’s also important to review the user permissions associated with the activities. Ensure that the user who posted the forum topics has the necessary permissions to be included in the Latest Activities widget. Check the user roles and permissions settings to make sure they are allowed to contribute to the activities that should be displayed.

    Hope so this will help you!

    Regards,
    Bryce June

    wp0noob
    Participant

    My BuddyPress site’s registration page has two sections, ‘Account Details’ and ‘Profile Details’. These two sections are displayed as two columns which is fine on desktop but they look messed up on a mobile screen.

    Is it possible to align the two sections in one column so that ‘Account Details’ show first, under which should be ‘Profile Details’ and then the ‘complete sigh up’ button?

    Thank you!

    #329829
    eluyawi
    Participant

    I have created a new menu called DATA, then when I visit my profile, my MENU appears (DATA, MESSAGES, NOTIFICATIONS, SETTINGS, ALERT) but I don’t know how to hide my new menu called DATA, for the following options:

    (a) when I visit a new user profile.
    b) when other users visit my profile.

    Do you know what kind of functions I can use and what files I have to change in BuddyPRess?

    #329819
    Kipperlenny
    Participant

    The translation string “All Members <span>%s</span>” from buddypress\bp-themes\bp-default\activity\index.php line 39 is missing in the pot file and cannot be translated in Loco to German.

    brycejune
    Participant

    Hi Arifulapece,
    Hope so you’re doing well, temporarily deactivate other plugins to check if any of them are causing a conflict with BuddyPress. Reactivate them one by one to identify the problematic plugin.
    Hope so this will work for you!
    Regards,
    Bryce June

    eluyawi
    Participant

    Hello everyone!!!
    I have installed BBPress and BuddyPress.

    When I only had BBPress, I was able to modify many fields in the BBpress profile, such as.
    – First name
    – Last name
    – Nickname
    – Bio
    @username
    – Username.

    Now, I have installed BBPress and BuddyPress, and I can’t find where these fields are to edit them so I can change their values. How can I put these BBPress fields in BuddyPress? Do I need a plugin?

    Thanks

    Steel Rat
    Participant

    Using WP 6.2.2, bbPress 2.6.9, and BuddyPress 11.2.0

    I’ve had the Latest Activities widget added to the right sidebar for some time, but it never shows anything. This is a site still in progress, but I had a friend login and post some forum topics, such, but still nothing ever shows.

    What should I see there?

    #329685
    wikivia
    Participant
    wikivia
    Participant

    profile BP Members Page the page displays “Loading the members of your community. Please wait.”

    irudyk
    Participant

    I’ve copied the members-loop.php into the buddypress\members folder of my theme with no modifications made to it. When I display the Staff Members — BP Members Page the page displays “Loading the members of your community. Please wait.” and nothing ever gets displayed. I’m using the nouveau option (but get the same result if I switch to legacy). Have turned off all add-ins (to no avail). Might be my an issue with my bundled theme, but I can switch to another theme to test without that causing the site to crash. Any assistance on where the issue may be would be appreciated. Thanks.

    Naomi
    Participant

    Hi, I’m running WordPress 6.2.1 running Astra theme, Buddypress 11.2.0.

    In Appearance > Menu I selected “Buddypress Member” and under the “logged in” tab I added “Activity” to my menu. When I click on it on the site while logged in, it takes me to my personal member page, not the global activity page. I would like it to go to the global activity page – or is there some other way members are supposed to see the global activity?

    Thank you.

    rsial
    Participant

    To overwrite the BuddyPress Nouveau template CSS in a child theme, you need to ensure that your child theme is properly enqueued and that the correct file path is used. Here’s the recommended approach:

    In your child theme folder, create a new directory called buddypress.

    Inside the buddypress directory, create a new directory called css.

    Copy the buddypress.css file from /plugins/buddypress/bp-templates/bp-nouveau/css into your child theme’s buddypress/css directory.

    In your child theme’s functions.php file, enqueue the modified CSS file. Add the following code:

    function enqueue_child_theme_styles() {
    wp_enqueue_style( ‘child-theme-buddypress’, get_stylesheet_directory_uri() . ‘/buddypress/css/buddypress.css’, array( ‘bp-nouveau-main’ ), ‘1.0’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘enqueue_child_theme_styles’, 999 );

    To overwrite the BuddyPress Nouveau template CSS in a child theme, you need to ensure that your child theme is properly enqueued and that the correct file path is used. Here’s the recommended approach:

    In your child theme folder, create a new directory called buddypress.

    Inside the buddypress directory, create a new directory called css.

    Copy the buddypress.css file from /plugins/buddypress/bp-templates/bp-nouveau/css into your child theme’s buddypress/css directory.

    In your child theme’s functions.php file, enqueue the modified CSS file. Add the following code:

    php
    Copy code
    function enqueue_child_theme_styles() {
    wp_enqueue_style( ‘child-theme-buddypress’, get_stylesheet_directory_uri() . ‘/buddypress/css/buddypress.css’, array( ‘bp-nouveau-main’ ), ‘1.0’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘enqueue_child_theme_styles’, 999 );
    Make sure to adjust the version number (‘1.0’) if you update your child theme’s CSS in the future.

    With these steps, the modified “buddypress.css” file from your child theme should be loaded and override the default styles from the BuddyPress Nouveau template.

    Remember to clear any caching plugins or server caches to ensure that the updated CSS is being served.

    If the changes still don’t take effect, it’s possible that another plugin or theme is conflicting with the child theme’s styles. In that case, you may need to investigate further and potentially use more specific CSS selectors or use a higher priority for the “wp_enqueue_style” function.

    ddesmond
    Participant

    Hello,

    I would like to clarify how to overwrite the BuddyPress Nouveau template css in a child theme.

    I have a fresh install of BuddyPress 11.1.0 and have created a new child theme structure. I have copied buddypress.css from:

    /plugins/buddypress/bp-templates/bp-nouveau/css

    to:

    /themes/my-child-theme/buddypress/css.

    I have made changes to this CSS file yet it is not loading the replacement stylesheet and the original unedited one is still being loaded.

    Am I doing this correctly? Can you please let me know the best approach for this? Everywhere I have looked suggests this method.

    Thanks so much!

    bekuhs
    Participant

    Is there a way to edit the group’s dashboard so that I can edit fields from there instead of having to from the frontend?

    As of right now, after clicking Groups and a group name, I see Name and Description, Add New Members, and Manage Members. I want to add the custom group fields (editable) to this page so they’re easier for my coworkers to access.

    Wordpress version 6.2
    BuddyPress version 11.1.0
    Custom child theme, Aardvark parent theme

    #329635
    oliveranthony
    Participant

    BBPress is a WordPress plugin that allows you to add a forum or discussion board to your WordPress website. While it doesn’t come with a built-in private messaging feature, there are a few ways you can add this functionality to your forum:

    Use a plugin: There are several plugins available that allow you to add private messaging to BBPress. One popular option is the “Private Messages For BBPress” plugin, which adds a private messaging system to your forum. You can also check out other plugins that are available in the WordPress repository.

    Use a third-party service: Another option is to integrate a third-party service that offers private messaging. For example, you could use a service like BuddyPress, which offers a range of social networking features, including private messaging. You can integrate BuddyPress with BBPress to add private messaging to your forum.

    Custom development: If you have the technical skills or can hire a developer, you could also develop a custom solution to add private messaging to your forum. This would involve creating a plugin or customizing the BBPress code to add the functionality you need.

    Whichever method you choose, it’s important to consider the security and privacy implications of adding private messaging to your forum. Make sure to implement appropriate security measures to protect user data and prevent spam or abuse.

    StudentFilmmakers
    Participant

    I migrated from BuddyBoss back to BuddyPress. I am using the Astra theme now. Tested other themes and get the same results. Some changes in the database or php was done that made the members and groups page full width and the size of the profile thumbnails are huge. Any shortcuts trouble shooting much appreciated.

    #329626
    ejoopasco
    Participant

    Hope to help someone else stumbling upon this. problem I identified the cause of this behaviour.
    In Settings -> BuddyPress -> Options I activated

    Allow visitors to request site membership. If enabled, an administrator must approve each new site membership request.

    If I deactivate that, the mail gets send.
    I guess that is intended. Maybe I need to make a feature request now.

    #329603
    faile486
    Participant

    Having a bit of a strange issue. I’m using Local by Flywheel to develop a site with buddypress, bbpress, and rtMedia. This is a website for mostly personal use, so I was planning on only sharing a live link with my spouse. Unfortunately, while everything works perfectly on my local machine, all buddypress features break when using live links. I get an error about too many redirects.

    I’ve tried this with multiple themes, including X/Pro, Twenty-Sixteen, Twenty Twenty-Three, and NanoSpace.

    Any suggestions?

    WordPress 6.2
    BuddyPress 11.1.0
    bbPress 2.6.9
    rtMedia 4.6.13

    It took a while to get Pro working with rtMedia, so it’d be a shame if this can’t be fixed! Site contains adult content (erotic hypnosis files), and I’d prefer to give the address out via DM.

    #329601
    bradcds
    Participant

    Hi all,

    I had BuddyBoss on my site for a long time but removed it and I am trying to use the original BuddyPress and BBPress.

    For some reason though when trying to upload a new profile or header image it allows me to select a file and after clicking done nothing happens.

    #329585
    Margriet
    Participant

    Hi,

    It seems indeed that this is the issue (Please note: For BuddyPress Multilingual to work, your site’s language URL format needs to be set to use different languages in directories. You can find the language URL options by going to WPML → Languages and scrolling to the Language URL Format section.)

    WPML is currently working on extending the support for every URL format. Hope it will be added in the future update of BPML plugin.

Viewing 25 results - 1,226 through 1,250 (of 69,016 total)
Skip to toolbar