It does, of course. But you haven’t to convience me. 😉 Another option could be to use BP Group Blog.
I have a BuddyPress site with Paid Memberships Pro. I currently have 3 different membership levels, say A, B, and C. If possible, I’d like to be able to control the “social interaction” (e.g. view profile, friend, block, private message, etc.) between the membership levels, such that:
– A can socially interact with A, B and C
– B can socially interact with A, B and C
– C can socially interact with A and B, but NOT with C (C-to-C interaction is not allowed)
Can this be done natively in BuddyPress or Paid Memberships Pro? Or is there a plugin that can help me handle this?
Wordpress Version 4.5.3
BuddyPress Version 2.6.1.1
Paid Memberships Pro Version 1.8.9.3
Hello,
Sorry I can’t work out how to start a new message!
I’m having problems with my website users changing their password via the frontend.
If a user changes their password via the frontend of the website, it still logs them out instantly and they are asked to re-enter username and password. When you enter these details (New ones or old ones) it comes up with “invalid username/password” error.
As administrator, I then have to login to the backend of WordPress and reset their password.
Does that make sense?
Do you have any solutions?
I have contacted the theme developer but that hasn’t provided anything helpful, so hope you can help! 🙂
Thank you
hi @javierllinas
You can use something like this (add to bp-custom.php or child theme’s functions.php)
BuddyPress usermenu usage: remove_node(‘$id-$nav-$subnav’)
/* remove items from Toolbar Usermenu (top-right) */
function bpex_admin_bar_remove_this(){
global $wp_admin_bar;
$wp_admin_bar->remove_node('my-account-forums-favorites');
$wp_admin_bar->remove_node('my-account-messages-starred');
// etc...
}
add_action('wp_before_admin_bar_render','bpex_admin_bar_remove_this');
Reference
Please I need help. I just installed Buddypress and pages that should automatically create are blank …
I have reinstalled several times Buddypress but not fixed . Does anyone know what can I do ?
wordpress version: 4.5.3
BuddyPress version: 2.6.1.1
http://morosicristiansbeneixama.com/
You’re right, i never read what i send to users asking for help.
Haven’t you seen “Support” on the plugin page ? Can’t you click ? You definitely not read !
Let’s try this:
https://wordpress.org/support/plugin/bp-xprofile-wp-user-sync
before closing this unrelated to BuddyPress topic.
At the moment, when I click on “Groups” he redirect to /members/(name)/groups
That is the path used for “Groups” button on a profile.
If you use the WP Menu builder, you can add “Groups” to your theme menu. In this case, it will lead to the Groups directory (which is what you want to do).
To see BuddyPress options for menus, you have to activate “buddypress” in the screen options first.
BuddyPress Links in WordPress Menus
What else ?
I see this one but its Last Updated: 1 year ago
https://wordpress.org/plugins/ip-based-login/
Other i have to test ..
thanks for the link
couple of wordpress plugins which would allow registration from a single IP…search them
Hi!
So i have problem with this feature. I can’t change cover image and affected on any user on my site. Here’s the screenshoot:
. So, how to fix it? thanks. 🙂
BuddyPress 2.6.1.1
WordPress 4.5.3
Sorry for you!… When it is so easy to avoid such situation by reading BP’s Codex…
BuddyPress Links in WordPress Menus
You can use BuddyPress Member Types Generator plugin to create members types.
Or use BuddyPress Member Types plugin, they have a bit different functionality. The 2nd one seems to have more features.
Different “Types of feeds” is not easily achievable, only with custom coding.
Custom login and registration pages – lots of solutions for custom login. Custom registration page is limited to BuddyPress, there is no plugin, that can do anything with it. You will need to dive into templating and custom styles.
The reason that it doesn’t work – it requires to be placed on a user BuddyPress profile page.
It uses bp_displayed_user_domain() function to generate the link, as there is no user on your custom page (it’s not BuddyPress or even WordPress) – bp_get_members_component_link function produces nothing.
There is no easy fix. You will need to create that link manually by retrieving somehow user domain (link to profile) of a desired user.
So far BuddyPress doesn’t support this out of the box and I don’t know such plugins.
But this is a good feature request, and I’m pretty sure that this will implemented eventually. Because we already have similar thing on Activity directory page.
Here is the ticket that I created with this request.
PS Update to the latest BuddyPress 2.6.1.1 🙂
I personally use Hueman theme on my site, and it has an ability to redefine or clean the footer credits: http://take.ms/8y2CP
And it looks good with BuddyPress, and has interesting settings for WordPress itself.
The content property is run through KSES and the permitted HTML tags are set here: https://buddypress.trac.wordpress.org/browser/trunk/src/bp-activity/bp-activity-filters.php#L206
You COULD unhook this function from the filter (see: lines 16-25, same file) but I would not recommend it, because other people will use this to inject malicious markup. Instead, consider using the bp_activity_filter_kses filter and whitelist a few extra HTML funtions that you need (i.e. just the paragraph tag).
Hello,
I have a really weird issue with Buddypresss, I can create notifications but they’re not received by the user… Every components are enabled btw.
If I do :
bp_notifications_add_notification( array(
'user_id' => get_current_user_id(),
'item_id' => 630,
'secondary_item_id' => 1080,
'component_name' => 'my_app',
'component_action' => 'my_app_action',
'date_notified' => bp_core_current_time(),
'is_new' => 1,
) );
Where 630 and 1080 are valid WordPress posts and my_app component has been registered sooner.
If I check my database, that’ll create a new entry as expected and I do :
bp_notifications_get_notification(306)
(306 is my new notification’s id) It does return the notification object.
However, if I do :
bp_notifications_get_notifications_for_user(3)
(3 is the current_user_id())
Then it returns false and bp_notifications_get_all_notifications_for_user() an empty array.
What am I missing ?
Thanks for the help, please let me know if you need more details.
Cheers,
François
ok, moved on a clone, disabled all plugins and tested it throughout and i found it out:
new activity notifications do work ok, what is missing are notifications of comments to activity – actually, it’s not a problem with my setup, it’s really a (very much needed, badly missed, imho) missing feature…
luckily, BP Live Notification does seem to do the job, but it’s yet another addition to the ever growing list of plugins needed for covering up the lack of (quite obvious, always imho) features…
you could mark this as resolved, i guess (tho it’s not quite, really)
Hi all,
I have the following link that I’m trying to get to display on a page outside of Buddypress:
<?php
echo bp_get_members_component_link( 'profile', 'change-cover-image' );
?>
But it’s not working, is there a particular global I need to declare? It’s on a non-Wordpress page but “wp-blog-header.php” is included on the page.
Hi @pulidomate,
By default, it’s not possible. But you can try to code it.
That said, registering users is reserved to site admin or editors. So far i understand your question, you’re talking about group admins (admins = teachers)and member types (teachers and students).
Registration and user management is a core thing for users with WP roles/capabilities. It is not the same thing as Teachers and Students within BuddyPress.
Group admins are, by default, users with a WP role of subscribers. Same thing for students. BP distinguish those users inside a group only, but for WP they still emain as “subscribers”.
May be you can use a plugin, but i haven’t tested it. Try:
https://wordpress.org/plugins/new-user-approve/
Hey I am making a website and want it to look professional, as we all do.
I notice that most free WordPress themes have footer credits and a link usually to the Theme’s website.
This is more of a wordpress question but since I’m using Buddypress I wanted to ask, can anyone offer a free Theme they use or have used which would allow me to do this? I have installed a bit and have only found two myself out of about 20 that had this feature (or no footer info) and the 1 had errors that wouldn’t allow me to save on customize page and the other wouldn’t let the page scroll down by keyboard input for some reason, but worked in all other directions.
So I thought this might be a good topic for discussion? Any help? Thanks in advance!