I have the following issues since the last update:
First things first, thats the website I am talking about: https://www.blueskies.rocks/
On the top right was the registration button. It just disappeared and the “or” is the login button now. Why is that, how can I get the “Registration” button back? Its more a link then a button.
Secondly the registration form got enhanced by several fields! The Username field got duplicated several times and I am not able to delete them in wordpress backend. How can I remove them? Please help. Thanks
I am trying to test the BuddyPress restful APIs with the activity function. The endpoint is:
/wp-json/buddypress/v1/activity
When I join a private group, and post an activity for myself (with subscriber role), I cannot see my own post(s). I can still see my post when I login to WordPress website, so I think it is something to do with the API.
Nevertheless, if it is a public group that I post, I can see my own posts. For administrator role, I can see all posts through the API.
Does anyone have the similar experience?
If it helps, I did a clean wordpress installation (5.5), with the twentytwenty theme, and the only two plugins were Loginizer and Buddypress. PHP is 7.4
I still got the same result. It ran, didn’t create any errors, but it didn’t join the user to the group.
Sorry I meant buddypress 6.2, WordPress 5.5 Not sure how I fix this post.
I installed WordPress on my root domain. For example: http://www.mysite.com
And then I installed the BuddyPress plugin.
But all the BuddyPress URLs now have a “buddypress” slug. For example: http://www.mysite.com/buddypress/registration
What I want is BuddyPress running on the root without the slug. For example: http://www.mysite.com/registration
How do I do that?
Hello,
How to enable file attachment in the forum?
In other words, there is a need to allow visitors when posting a message to add a PDF document if they chose to.
Below is the required info/link
WordPress version version 5.5
BuddyPress version Version 6.2.0
Link to my site esCanada.org
Thank you.
Sam
Hi @webmasterfreya
Thanks a lot for your alert about this issue. We will package a new maintenance release asap to fix it.
For more details, see https://buddypress.trac.wordpress.org/ticket/8347
Hello,
The following bug occurs. A loggedin user presses Home Button, then the website is loggedout.
Can someone help me to solve this problem?
Wordpress 5.5 Mesodark theme (a child theme of Mesocolumn theme).
Buddypress 6.2.0
Prometheus0
@brayte email is mandatory for WordPress.
Wordpress Version 5.4.2
Buddypress Version 6.2.0
I’m having an issue with adding HTML/blocks to the buddypress pages, Activity, Members, groups. Is there something I need to do to get to work?
I am looking to modify the registration so that no need for the email. we will only ask for Username and password. I am using WordPress and a plugin called ultimate membership pro to manage membership. this plugin is responsible for the registration page. Could anyone here help with this?
> The description field is a standard wordpress profile text field
That’s not the same as a BP profile field. They are two separate beasts.
You need to find the code, perhaps in your theme, that is adding that field on profiles.
> How could I place a BuddyPress profile field on the profile start page
You need to edit the home template for profiles.
And it sounds like that is already being done by some code on your site.
Find it and you should know how to change it to show a BP profile field for bio.
Hi Shane,
thx for the quick answer.
The description I am talking about is seen here ‘http://example.com/members/USERNAME/’. The link pointing to ‘/wp-admin/profile.php#description’ is just below it.
By short description do you mean Biographical Info?
yes.
I don’t think there is another plugin which creates this short description (bio info). The description field is a standard wordpress profile text field, isn’t it?
How could I place a BuddyPress profile field on the profile start page ‘/members/USERNAME/’?
I figured it out… it was pretty simple in the end as all I did was change ‘role” to ‘role__not_in’ while putting the role I do want to show in $role
/**
* Exclude Users from BuddyPress Members List unless they have specific WordPress role.
*
* @param array $args args.
*
* @return array
*/
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 );
}
$role = 'roletoshow';// change to the role to be shown.
$user_ids = get_users( array( 'role__not_in' => $role, 'fields' => 'ID' ) );
$excluded = array_merge( $excluded, $user_ids );
$args['exclude'] = $excluded;
return $args;
}
add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_users_by_role' );
Sounds like a memory issue (server hosting problem). What errors do you get?
You can see the errors by enabling WordPress debug. Locate your wp-config.php in your wordpress installation files and set WP_DEBUG to true, i.e.: define( ‘WP_DEBUG’, true );
I haven’t tried it personally, but https://wordpress.org/plugins/likebtn-like-button/ seems to add a like / dislike button to activity comments and posts.
You’d probably have better luck and less headaches just making searchable hashtags. You can dig through https://wordpress.org/plugins/hashbuddy/ and take the few lines of code it requires.
I’m trying to create a searchable list of profiles which only displays profiles of a certain type. I tried using the BP Profile Search plugin, but it doesn’t seem like it can only search a certain profile type. I also tried using FacetWP, but that doesn’t seem to do anything. Is there any way to limit BP Profile Search to a single profile type, or achieve this some other way? (I’m using the latest versions of BuddyPress and WordPress)
Hey Everyone!
Does anyone know if there is a way that we can disable public facing user profiles? We have noticed that the public facing user profiles use the user’s email address as their @ username and thus exposes the users email address.
Also, when we navigate to /members this exposes a list of all of our members. Is there a way to disable this as well?
We are using WordPress 5.4.2 the BuddyBoss theme with BuddyPress 5.2.0 and LearnDash LMS.
If anyone can point me in the right direction I would be eternally grateful!
<3 OBD.
Related request: https://buddypress.org/support/topic/buddypress-verified-feature-suggestion/
Has this feature been resolved? I’m also interested in a “verified account” badge or indicator for users.
If this is/can be not built into BP, is it compatible with this WP plugin https://wordpress.org/plugins/bp-verified-member/ or something similar else that is recommended?
Thanks!
Thank you @mercime for the information,
Changed to Twenty Twenty and the profile settings shown.
So the issue is on The Theme,
I am using Kleo WordPress THeme,
Thanks again for the information
The Profile, Notification and Setting tab is empty
Here is the screenshot: https://www.dropbox.com/s/d4920u7r2g0e4fg/Screenshot%202020-07-26%2011.23.45.png?dl=0
Buddypress Versi 6.1.0
WordPress 5.4.2