• Resolved buylov

    (@buylov)


    Hello guys!
    Is there a way to hide sections:
    /my-courses/redeem-voucher,
    /my-courses/orders
    and others?

Viewing 4 replies - 1 through 4 (of 4 total)
  • There You go
    Removing tabs

    Thread Starter buylov

    (@buylov)

    Thank you!
    I added this code to the file function.php
    But nothing has changed.

    function my_remove_dashboard_tabs( $tabs ) {
    	// unset( $tabs['view-courses'] );
    	// unset( $tabs['edit-account'] );
    	// unset( $tabs['redeem-voucher'] );
    	// unset( $tabs['orders'] );
    	// unset( $tabs['signout'] );
    	return $tabs;
    }
    add_filter( 'llms_get_student_dashboard_tabs', 'my_remove_dashboard_tabs' );

    You have to remove slashes ( // )
    It should looks like this:

    function my_remove_dashboard_tabs( $tabs ) {
    	unset( $tabs['view-courses'] );
    	unset( $tabs['edit-account'] );
    	unset( $tabs['redeem-voucher'] );
    	unset( $tabs['orders'] );
    	unset( $tabs['signout'] );
    	return $tabs;
    }
    add_filter( 'llms_get_student_dashboard_tabs', 'my_remove_dashboard_tabs' );
    • This reply was modified 6 years, 12 months ago by jurasjo.
    Thread Starter buylov

    (@buylov)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove tabs in my courses’ is closed to new replies.