Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author BuddyBoss

    (@buddyboss)

    @t2m
    You can use following codes inside child theme functions.php

    function bb_remove_course_tab() {
    global $bp;
    bp_core_remove_nav_item( 'courses' );
    }
    add_action( 'bp_setup_nav', 'bb_remove_course_tab', 999 );
    Thread Starter t2m

    (@t2m)

    This is exactly what I needed. Thankyou very much BuddyBoss!

    Krzysztof Kwasniewski

    (@kkwasniewskietechnologiepl)

    Hi
    Is this code still work? I was trying to add it into child theme functions.php and it doesn’t work
    Can you check again?
    Thank you in adavanced
    Krzysztof

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove "Courses" tab from BuddyPress profile menu’ is closed to new replies.