Search Results for 'buddypress'
-
Search Results
-
Topic: No Upload Avatar Button
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!
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.
Topic: BuddyPress Profile Tabs
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!
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
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(); }How can I enable a non-admin user to moderate buddypress activities without let him using admin backend panel?
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?Topic: message subject
is it possible to remove or make it optional of buddypress message subject
Topic: message
@prashantvatsh is it possible to remove or make it optional for buddypress messsage subject
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!
Topic: Buddypress & Jetpack 2020
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?