Thank you very much @wprashed I got it with CSS.
Hi @jobayertuser
I am already using the hook to hide “withdraw” from the left Menu, it is working but I would also like to hide or remove from the settings dashboard.
I am trying with this:
add_filter('tutor_dashboard/instructor_nav_items', 'remove_some_links');
function remove_some_links($nav){
unset($nav['withdraw']);
return $nav;
}
but it is not working, I can still see “withdraw” in the settings menu dashboard.
I am also trying hidding with CSS using this code:
.tutor-nav-item:nth-child(3) {
display: none;
}
but the “more items dropdown menu” appears with the “withdraw” option.
Any hint?