-
GyziieDK replied to the topic Hyerarchical groups for BP in the forum Requests & Feedback 1 month, 2 weeks ago
Thank you for this plugin @dcavins!
Didn’t know someone took the time to update the old “BP Group Hierarchy” plugin by David Dean.
Can confirm it works for me with the following setup:
WordPress - Version 6.6.2
BuddyPress - Version 14.2.1
Template Pack - LegacyThe only minor issue I’m having is that my theme doesn’t support the s…[Read more]
-
Mathieu Viet replied to the topic What is the most important thing BuddyPress is missing? in the forum Requests & Feedback 2 years, 2 months ago
Hi @ok2net @muhittinsahilli & @johnjamesjacoby 😉
Thanks a lot for your feedbacks 😍. Very interesting ideas!! I’ll add the « spam protection » one I received on Twitter to the list.
Just like John who gave the right example as a Project Lead, I’ll share my ideas 😁.
A first category of ideas is about getting more hands to help us build great t…[Read more]
-
Mathieu Viet replied to the topic Fatal Error When Activating Pending Account in the forum How-to & Troubleshooting 2 years, 4 months ago
Hi thanks for the report, it looks like a bug with the site membership request feature @dcavins could you look at it?
-
Mathieu Viet replied to the topic buddypress-10-0-0-beta1 in the forum Miscellaneous 3 years ago
Hi @windhillruss thanks a lot for your feedback I believe it’s just a matter of theme template updates. @dcavins can you have a look at it?
-
Dr md shahriar kabir replied to the topic BuddyPress 8.0.0 in the forum Miscellaneous 3 years, 6 months ago
@dcavins I use Youzify & Buddy App theme.
-
Neo replied to the topic BuddyPress 8.0.0 in the forum Miscellaneous 3 years, 6 months ago
Dear @dcavins, many thanks. I think that myCred will / must bring an update. Otherwise the myCred plugin will cause problems on several pages and thus otherwise unusable. 🤪 Many greetings Neo
-
tom durocher replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 2 months ago
@dcavins and others. The code you suggested was incorrect. Here is the correct code to fix the problem:
function my_xprofile_sync_wp_profile( $user_id = 0 ) {
[Read more]
// Bail if profile syncing is disabled.
if ( bp_disable_profile_sync() ) {
return true;
}
if ( empty( $user_id ) ) {
$user_id = bp_loggedin_user_id();
}… -
Patriot06 replied to the topic Post button disappeared in the forum How-to & Troubleshooting 5 years, 2 months ago
@alysonmac Thanks for te info on Peepso. I ended up going to legacy instead of nouveau as well and it works fine. I am also able to use the BP Post From Anywhere plugin with Legacy and that is working fine as well. I don’t think that one works with Nouveau either.
@dcavins Thanks for your efforts to solve the issue. I am new to programming and I…[Read more]
-
tom durocher replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 2 months ago
@dcavins, when I say I removed the xprofile_sync function, that was part of your suggested code. More precisely, I removed the function from the action and then added your revised function. I guess that should not prevent the forum name from being set and yet it apparently does. Well, your bullet items are good info, especially that first one. I…[Read more]
-
tom durocher replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 2 months ago
Hi @dcavins. Just @mentioning you in case you’re not subscribed. I think you code can work for me if we can just get the Forum name back to being savable.
After looking at the original function in the link you posted, I’m guessing that updating the nickname with $fullname is not wrong, but it doesn’t seem to be working. I notice that this…[Read more]
-
tom durocher replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 2 months ago
David (@dcavins), do you have any ideas why I wouldn’t be seeing the Display Name under Edit Profile, as you said it should? Or why Buddypress overrides important BBpress fields for editing the forum profile? I think there must be a way around this. I do not see that Memberpress is involved in this profile page at all (no apparent mepr classes or…[Read more]
-
TheArmory1 replied to the topic How to restrict group creation to certain users in the forum How-to & Troubleshooting 6 years, 8 months ago
@dcavins, Yes in the functions.php file.
-
TheArmory1 replied to the topic How to restrict group creation to certain users in the forum How-to & Troubleshooting 6 years, 8 months ago
@dcavins, No luck if I uncheck box only admins can create groups regardless of the code above.
If I check that box ever role type has the ability to create a group regardless of the code above.
-
TheArmory1 replied to the topic How to restrict group creation to certain users in the forum How-to & Troubleshooting 6 years, 8 months ago
@dcavins, question should I enable group creation for all users and use this code or leave that option off.
-
TheArmory1 replied to the topic How to restrict group creation to certain users in the forum How-to & Troubleshooting 6 years, 8 months ago
we allow vendors to post products so could we use something like this?
add_filter( ‘bp_user_can_create_groups’, function( $can_create ) {
$can_create = false;
if ( current_user_can( ‘edit_products’ ) ) {
$can_create = true;
}
return $can_create;
} ); -
TheArmory1 replied to the topic How to restrict group creation to certain users in the forum How-to & Troubleshooting 6 years, 8 months ago
Where do we find the users capabilities?
We are having a lot of issues with this. Is there a way to “review/ pending for approval” the groups before going live.
-
otty-dev replied to the topic How do I link blog post authors to their BP profiles? in the forum How-to & Troubleshooting 6 years, 10 months ago
Hi @dcavins
I added your code to the end of child theme > functions.php at the end of the code provided by @mastershas and got a syntax error
-
otty-dev replied to the topic Show Follow Button on Each Member's Profile Page in the forum Third Party Plugins 6 years, 10 months ago
Correct, I added a plugin that replaces add friend with follow.
I created a new directory of buddypress > members > single > cover-image.php and tried to add the following code but no luck:<div id="item-header-content">
<?php }else{?>
<div class="follow_button">
<div class="follow_icon">
<?php
$args =…[Read more] -
Georgio replied to the topic Additional info on group memberlist in the forum How-to & Troubleshooting 7 years, 1 month ago
Hi @dcavins
The button Chat is a shortcode of the plugin Frontend PM. I meanwhile contacted its developer and he gave me a code like yours and that resolved the problem.
The Email link is from code I found on the internet and displays info from a profile field. I did not test your code with it, because I thought that it may be finally a good…[Read more]
-
Paul Wong-Gibbs replied to the topic Pending Activation in the forum Installing BuddyPress 7 years, 10 months ago
Hi @leo1951
Are you using any email plugins for WordPress that you require to successfully send emails? Or SMTP config? Or anything custom in php.ini?
It’s not clear if “Easy WP SMTP” is required for your WordPress installation to send emails.
If you are not using SMTP to send email via a remote email server, are you running something likesendma…
[Read more] - Load More
@dcavins
Active 3 weeks, 1 day ago