@prosellen
14 years, 11 months ago
Hi,
Tim was 99% right – you just need to hook it into “plugins_loaded”. That’s it. This one works for me:
function remove_navitems() { bp_core_remove_nav_item('blogs'); } add_action('plugins_loaded', 'remove_navitems');
Cheers