Plugin: BuddyPress ScholarPress Courseware

Join this plugin group to follow comments, support topics and reviews.

changing menu item (2 posts)

Started 9 months, 3 weeks ago by: Andrea_r

  • Profile picture of Andrea_r Andrea_r said 9 months, 3 weeks ago:

    Is there any way to change where the “Courseware” menu item links to? In my case, I need it to go straight to the assignments page.

    I’m willing to hack it, I just need to know where.

  • Profile picture of Stas SuČ™cov Stas Suscov said 9 months, 2 weeks ago:

    Sure,
    try this:

    function cw_hack() {
        global $bp;
        var_dump( $bp->bp_options_nav[$bp->groups->current_group->slug][$bp->courseware->slug] );
    }
    add_action( 'courseware_group_set_nav', 'cw_hack' );

    :)