-
Henry Wright replied to the topic Add friend button error in Buddypress plugin in the forum How-to & Troubleshooting 9 years, 7 months ago
I tried that too, it crashed my site
Oh no! that’s not cool 🙁
-
Henry Wright replied to the topic Add friend button error in Buddypress plugin in the forum How-to & Troubleshooting 9 years, 7 months ago
Try deactivating all of your plugins to see if that helps?
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
@mrgiblets do you have a link to your site? I’ll check it out and try to see if I can come up with a fix for you.
In the mean time, if you want to remove the button from the members directory only, then you can put this snippet in your functions.php file:
remove_action( 'bp_directory_members_actions', 'bp_mute_add_member_dir_button', 99…
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
@mrgiblets do you have a link to your site? I’ll check it out and try to see if I can come up with a fix for you.
In the mean time, if you want to remove the button from the members loop only, then you can put this snippet in your functions.php file:
remove_action( 'bp_directory_members_actions', 'bp_mute_add_member_dir_button', 99 );
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
@mrgiblets do you have a link to your site? I’ll check it out and try to see if I can come up with a fix for you.
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
@mrgiblets do you have a link to your site? I’ll check it out and try to see if I can come up with a fix.
-
Henry Wright replied to the topic Add friend button error in Buddypress plugin in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @jay_chauhan
Does the problem happen with Twenty Fifteen activated? If not then the problem could be the theme you’re using.
-
Henry Wright replied to the topic Custom sort members in the forum How-to & Troubleshooting 9 years, 7 months ago
Look into using the
bp_after_has_members_parse_args
filter. I think it’ll let you override themeta_key
andmeta_value
params. That may help you do what you want?See here for a tutorial on how to use the filter.
-
Henry Wright replied to the topic Why is there no ajax on profile tabs? in the forum Requests & Feedback 9 years, 7 months ago
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
Thanks for your feedback @mrgiblets! Also, thanks for your review over at wordpress.org 😀
-
Henry Wright replied to the topic Show the faces of users who liked an Activity in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @tse11
Have you tried contacting the author at Buddydev?
-
Henry Wright replied to the topic Setting User Role During Custom Registration in the forum Creating & Extending 9 years, 7 months ago
Hi @ch1n3s3b0y
Are you sure
$POST_['user_type']
is set?switch( $POST_['user_type'] ) {
case 'customer':
$new_role = 'customer';
break;
case 'guru':
$new_role = 'expert';
break;
default:
$new_role = 'user_role_is_neither_customer_or_expert';
}Try adding a default case to your switch…[Read more]
-
Henry Wright replied to the topic Setting User Role During Custom Registration in the forum Creating & Extending 9 years, 7 months ago
Hi @ch1n3s3b0y
Are you sure
$POST_['user_type']
is set?switch( $POST_['user_type'] ) {
case "customer":
$new_role = 'customer';
break;
case "guru":
$new_role = 'expert';
break;
default:
$new_role = 'user_role_is_neither_customer_or_expert';
}Try adding a default case to your switch…[Read more]
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
Hey @mcpeanut
Thanks! If you have any feedback once you’ve given it a spin, then I’d be grateful for it 😀
-
Henry Wright replied to the topic Changing avatar size? in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @mrgiblets
The avatar sizes are set via constants that you can override.
Check out this article for more info: https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/
-
Henry Wright replied to the topic Disable Email Verification in the forum How-to & Troubleshooting 9 years, 7 months ago
Just looking through the Plugin Directory, I came across this plugin that might help:
https://wordpress.org/plugins/bp-disable-activation-reloaded/
-
Henry Wright replied to the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
Thanks @shanebp 🙂
-
Henry Wright started the topic New plugin: BuddyPress Mute in the forum Showcase 9 years, 7 months ago
BuddyPress Mute allows your members to mute their friends. Muting a person results in all of that person’s activity items being removed from your site-wide activity stream. Some features of the plugin are:
You can mute and unmute people at any time.
You can continue to interact with muted members. For instance, sending them a private message…[Read more] -
Henry Wright replied to the topic Problem with Widget Logic and members pages in the forum Third Party Plugins 9 years, 8 months ago
Can this be reported to BuddyPress dev team?
You can report bugs using Trac:
https://buddypress.trac.wordpress.org/
Your login details will be the same as those you use here in the forums.
-
Henry Wright replied to the topic Problem with Widget Logic and members pages in the forum Third Party Plugins 9 years, 8 months ago
I’ve had problems when using
is_page()
in BuddyPress in the past. In addition to that conditional, try putting in further checks such asbp_is_groups()
orbp_is_friends()
(or whatever is relevant to your task).See here for a list of template tags available:
- Load More
@henrywright
Active 8 months, 2 weeks ago