Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,101 through 4,125 (of 73,985 total)
  • Author
    Search Results
  • #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!

    #312567
    bikerflyeradmin
    Participant

    Can someone please help me fix the wp-admin bar on buddypress profile pages. Everywhere else the admin bar is above the header and menu and perfect, but on buddypress profile pages there is a big space above the admin bar and the admin bar itself covers the header and menu.

    https://wikacy.com/members/admin/

    Your help is sincerely appreciated.

    #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

    #312553
    annadito
    Participant

    Hi there,

    The site is a dev site so I’m not able to share a link unfortunately, but I am wondering about the best way to divide the profile field sets into tabs.

    This post here is the closest thing I can find to what I’m trying to do: https://buddypress.org/support/topic/hot-can-i-display-the-profile-fields-groups-in-tabs/

    I have downloaded the suggested plugin, but am a bit concerned about the stability and security of it since it hasn’t been updated in 4 years. I was unable to find a way to contact the developer.

    Does anyone have any ideas on how to achieve this?

    Thanks!

    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.

    #312513
    coolhunt
    Participant

    Hey Guys,

    Is it possible to create a function that calls “repopulate site tracking records” in to bp-customs.php

    My Problem:
    From time to time, my blog posts either arent appearing or comments box doesnt appear in the comment box.. and when I check the admin/activity … it says: “replies disabled”

    im thinking of this function.. (any thoughs?) any help would be great

    
    	// Blogs:
    	// - user blog count
    	if ( bp_is_active( 'blogs' ) ) {
    		$repair_list[90] = array(
    			'bp-blog-records',
    			__( 'Repopulate blogs records', 'buddypress' ),
    			'bp_admin_repair_blog_records',
    		);
    	}
    
    	ksort( $repair_list );
    
    	return (array) apply_filters( 'bp_repair_list', $repair_list );
    }
    
    	if ( bp_is_active( 'blogs' ) ) {
    		$repair = bp_blogs_record_existing_blogs();
    	}
    
    
    #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.

    Quentinius
    Participant

    Basically, I’m building my site using elementor and we want to incorporate buddypress.

    We have the main non-buddypress pages set up and they use a selection of templates – including a template for the main top menu bar which is fixed and scrolls down with the page (in the same way as the wp bar does).

    What I want to figure out is how I incorporate this menu bar into the buddypress templates and especially the member profile page.

    I’ve tried a couple of things out so far but with no luck and ideally I’m just looking for someone to point me in the direction of where I should place the code which calls the menu template. I would be grateful for some assistance thanks.

    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

    #312492

    Topic: message subject

    in group forum Installing BuddyPress
    socially2020
    Participant

    is it possible to remove or make it optional of buddypress message subject

    #312491

    Topic: message

    in group forum Installing BuddyPress
    socially2020
    Participant

    @prashantvatsh is it possible to remove or make it optional for buddypress messsage subject

    globsticks
    Participant

    Hello,

    is is possible to customize parent theme’s buddypress folder into child theme and edit the templates in child theme to send customized notifications to users when these events happen:

    a. a new account has been created
    b. a post from user moves up to a higher voting threshold
    c. a user gets a new voting score

    ¿is there any limitation to get the plugin not to work this way?

    thank you!

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

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