Remove instructor links in the tutor dashboard in Tutor LMS on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter('tutor_dashboard/instructor_nav_items', 'remove_some_links');
function remove_some_links($links) {
unset($links['assignments']);
return $links;
}