Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,376 through 3,400 (of 69,016 total)
  • Author
    Search Results
  • stof17
    Participant

    I want to create a community website, so I install BuddyPress and Olympus theme and youzer plugin. After I finish the setup, I want to make it a paid membership community. I use “ultimate membership pro ” plugin. But my problem is that whenever I go to the register page and choose a subscription plan it takes me to the old BuddyPress registration page, not the ultimate membership pro one. In The BuddyPress register page, anyone can register and there’s no payment process. I need to replace it with the new one. I set all the settings correctly but nothing happens. maybe I need to edit the code. Can you help with that?

    #312593
    bigealien
    Participant

    @vapvarum thank you for the reply! I will attempt the troubleshooting. Where did you get that screenshot? That is certainly not my site. I’m sure BuddyPress is working on other people’s websites, it’s just not working on mine for this specific issue. I’ll include a screenshot or two.

    https://prnt.sc/t7xwqk – Screenshot with the Profile Picture option enabled. Circled in red where the option to upload SHOULD be.

    https://prnt.sc/t7xwjo – Screenshot with both Profile and Cover Image options enabled. As you can see the Change Cover Image option is available here, but again no Profile Image option.

    #312590
    oudekaas
    Participant

    I want to create a all black Twenty Twenty theme but when i change the colors everything works and the text is white (like i want it) but when i go to the BuddyPress part of my site and go to activity my activityposts are invisible but when i highlight them they are still there does someone know a fix


    Homepage

    Buddypress social

    #312585
    miryd98
    Participant

    it is a spam plugin no?
    anyways its for bbpress not for buddypress
    it works with both??

    #312582
    Varun Dubey
    Participant

    @bigealien seems working fine https://prnt.sc/t7udpt
    you can try following steps to debug the possible issue
    https://buddypress.org/support/topic/when-asking-for-support-2/

    #312577
    Varun Dubey
    Participant

    @optimizedpanama it seems you are using any other plugin which might be limiting access of groups and redirecting regular members to the homepage. Try to deactivate other active plugins and test once with BuddyPress only.

    #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!

    #312559
    annadito
    Participant

    Thanks for replying! I am able to add new field sets to the profile. They are displayed in a long list instead of broken up by tabs.

    If you’re looking at this screenshot: https://drive.google.com/file/d/1hgBbI3Za688UzVbl5cC9L5OjKboMVV5z/view?usp=sharing

    Ideally, there would be tabs under the “View Profile” text for “Bio” and “Test Field Set”. When you clicked on the tab, it would display the info associated with that field set.

    There’s an old plugin that appears to do this (https://wordpress.org/plugins/buddypress-profile-tabs/), but I am concerned about its stability and wondering if there is another option.

    Thank you for any guidance!

    #312558
    clickallco
    Participant

    Could you elaborate? Currently this is an already built in function in Buddypress.

    Go to your wordpress dashboard followed by clicking on Users > Profile fields > click on the button called “Add new field group” and you got a new tab you can fill out with profile fields.

    bojates
    Participant

    I am running a subscription site. When membership expires, the member is demoted to a ‘subscriber’ role. They should then be excluded from listings and searches. I had this working ok before the new BuddyPress but it seems a bit trickier with Nouveau. I have the following code so far in bp-custom.php.

    
    add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_users_by_role' );
    add_filter( 'bp_members_suggestions_query_args', 'buddydev_exclude_users_by_role' );
    
    function buddydev_exclude_users_by_role( $args ) {
        // do not exclude in admin.
        if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
            return $args;
        }
     
        $excluded = isset( $args['exclude'] ) ? $args['exclude'] : array();
     
        if ( ! is_array( $excluded ) ) {
            $excluded = explode( ',', $excluded );
        }
     
        $user_ids = get_users( array( 'role__in' => ['subscriber'], 'fields' => 'ID' ) );
        $excluded = array_merge( $excluded, $user_ids );
     
        $args['exclude'] = $excluded;
     
        return $args;
    }
    

    The first filter seems to fix the regular member listing.
    The second filter fixes the autocomplete when trying to find a user for messages.

    Do you know how I can filter the list for inviting members to groups? I’m using Nouveau and it seems to be ignoring these filters at that point.

    Thanks.

    #312556
    Varun Dubey
    Participant

    @reelscene not sure with Youzer, BuddyPress by default have nested comments and replies for activity
    https://prnt.sc/t73fas

    Varun Dubey
    Participant

    @dmcsupport to debug try to disable all active plugin except BuddyPress and also toggle to the default 2020 theme.
    It might be possible any of your active plugin or theme is using flush_rewrite_rules() and trying to set their own path.

    #312542

    In reply to: avatar notification

    Varun Dubey
    Participant

    @socially2020 You will have to code for it
    at xprofile_avatar_uploaded action, you can hook notification
    for ref, you can check https://codex.buddypress.org/developer/function-examples/bp_notifications_add_notification/

    #312540
    Varun Dubey
    Participant


    @rootcr8r
    You can override single member profile template inside child theme

    Template Hierarchy


    /buddypress/members/single/ folder contain all files
    https://github.com/buddypress/BuddyPress/tree/master/src/bp-templates/bp-legacy/buddypress/members/single

    bojates
    Participant

    I’m having a problem with the messaging in BuddyPress. When I search for a user in Compose, to send them a message, they quite often don’t appear in the dropdown list of users.

    I am pretty sure this is because the ajax search bp_get_suggestions is checking the extended user fields as well as the name and username fields. My members are referred by other members, so many of them have another user’s name in one of their extended user fields. This means a search for ‘@jane’ will bring back all the users who have been referred by Jane before it brings back Jane herself. And because it’s alphabetical, we don’t get to Jane herself.

    Is there a way to restrict the fields that get searched for this messaging functionality?

    Thanks,

    Jemima

    dmcsupport
    Participant

    Thank you for your reply. The Permalink solution doesn’t work. The issue is explained below. If I disable the BuddyPress plugin, no 404 error.

    Step 1. Visit any BuddyPress page.
    Step 2. Visit non BuddyPress page and 404 error comes up. If I refresh the same page the error goes away.
    Step 3. Again visit BuddyPress page and then non BuddyPress page and again 404 page.

    I hope someone has solution to this.

    #312524
    clickallco
    Participant

    You’re asking about two separate things.

    The Buddypress notifications doesn’t need modified templates to send new notifications – it needs custom coding for it to be expanded.

    Here’s an example in how to create a new type of buddypress notification:

    https://gist.github.com/modemlooper/9693b591d8c36288496d

    Here’s where its described in the buddypress codex:

    bp_notifications_add_notification

    There is no limitation to the amount of notifications your website or plugin has if thats how you want it, it just needs to be coded in.

    #312521
    clickallco
    Participant

    You could always customize your own templates and change it to your behest.

    You can get an idea about how to start it out here https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    From then on its just about coding it to your own set standards.

    #312509
    dmcsupport
    Participant

    I am getting same 404 page for the next page after buddypress page. How do I solve this issue? Please advise.

    Thank you.

    Andrea
    Participant

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

    #312496

    In reply to: 2 problems

    wahj73
    Participant

    Which version of WordPress are you running?

    Current Version: 3.2.7.2

    Did you install WordPress as a directory or subdomain install?

    directory

    Which version of BP are you running?

    last version

    Do you have any plugins other than BuddyPress installed and activated? If so, which ones?

    s2.member
    learnpress
    Wpbakary
    Loco

    Which theme do you use ?

    eduma

    __

    I tried delete the WordPress website and reinstall it again with using the same database but it doesn’t work.

    I had use jetpack plugin before.

    I can’t remember when this problem happen. Is it after graduation? Is it after install some plugins?

    nikkdj
    Participant

    Hi, i’m using updated version of Buddypress,
    when i Delete an account, the commments the account have created is not deleted, the account becomes Anonymous.
    How can i fix this to delete all comments and topics on the account that has been deleted?

    #312494

    In reply to: 2 problems

    iamthewebb
    Participant

    Hi,

    Check https://buddypress.org/support/topic/when-asking-for-support-2/ as we’ll need more information to be able to help you. It also lists basic troubleshooting steps

    #312486
    coolhunt
    Participant

    Hi Everyone,

    Im thinking of installing Jetpack to take advantage of the CDN (for images) built in.
    Is the Jetpack plugin recommended companion for Buddypress?

    #312483
    nqui
    Participant

    @alwaysalready Thank you so much!!!!!
    Your solution sorted everything. I so appreciate it!!!!!!!!!!!!!!!

    In case it is interesting to anyone, to try fix this before coming to this thread, I:
    1. installed “Check Email” to see if there was a problem sending emails from my site (there wasn’t)
    2. installed “WP Mail SMTP”, setting up SMTP with all its complications in case it was some sort of spam issue (it wasn’t)
    3. discovered using the above that the registration emails were being bounced with the error message “Diagnostic-Code: smtp; 550 Messages should have one or no To headers, not 2.” When I looked at the headers, sure enough, there were two “To: destination-email-address” lines in the header.
    4. Deactivated BuddyPress. Found that registration emails successfully went through.
    5. Finally came here, having found out that BuddyPress was definitely the culprit.

    All this has been quite stressful, it is the first website I’ve ever set up.

Viewing 25 results - 3,376 through 3,400 (of 69,016 total)
Skip to toolbar