-
Richard Venable posted on the forum topic Hide BP widgets in the group How-To and Troubleshooting: 14 years, 6 months ago
The file goes in your plugins directory. What error message did you receive?
-
Richard Venable posted on the forum topic Hide BP widgets in the group How-To and Troubleshooting: 14 years, 6 months ago
This is how I did it on my site: (it just prevents BP from registering the widgets)
// Remove buddypress widgets from blogs other than the main blog
function hide_bp_widgets() {
if (!is_main_blog()) remove_all_actions(‘bp_register_widgets’);
}
add_action(‘plugins_loaded’, ‘hide_bp_widgets’, 1); // Has to run before bp_setup_widgets() -
Richard Venable joined the group How-To and Troubleshooting 14 years, 6 months ago
-
rvenable posted on the forum topic Friends and Groups for BuddyPress 1.3 in the group Requests & Feedback: 14 years, 6 months ago
I guess this topic dropped off the radar, but I hope it comes back up again, because I personally think this is a great direction to go, and I see many advantages to having the friends feature built on top of the groups feature. I haven’t had time to read most of the previous 70 […]
-
rvenable joined the group Requests & Feedback 14 years, 6 months ago
@rvenable
Not recently active