Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    do you want to disable all EM navs on your buddypress site or in certain areas only?

    Thread Starter yoluca

    (@yoluca)

    yes … I dont want member to see anything related to em .. No menu no nothing.

    I have already disabled the activity all i need is to remove events from buddypress

    Hi,

    have you tried this snippet

    function my_remove_em_nav() {
    	global $bp;
    	bp_core_remove_subnav_item($bp->groups->slug,'group-events');
    	bp_core_remove_nav_item( 'events' );
    }
    add_action( 'bp_setup_nav', 'my_remove_em_nav' )

    paste in your theme functions.php

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    you may need to correct the above for a lower priority (and missing ; )

    function my_remove_em_nav() {
    	global $bp;
    	bp_core_remove_subnav_item($bp->groups->slug,'group-events');
    	bp_core_remove_nav_item( 'events' );
    }
    add_action( 'bp_setup_nav', 'my_remove_em_nav', 1000 );
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Disable Events on Buddypress’ is closed to new replies.