Viewing 2 replies - 1 through 2 (of 2 total)
  • @jennant

    1. To remove some links you can use the following code:
    add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard');
    function remove_some_links_dashboard($links){
    	unset($links['reviews']);
    	unset($links['wishlist']);
    	return $links;
    }

    2. To remove the “Create a new course” section you can add the following CSS codes on Appearance > Customize > Additional CSS:

    .tutor-submenu-login-section-instructor {
        display: none;
    }

    3. To remove the link hover color you can add the following CSS codes on Appearance > Customize > Additional CSS. Replace the color code as you need.

    .tutor-header-profile-menu-items ul li a:hover {
        color: #456bed;
    }

    Thank you!
    Best Regards

    Thread Starter jennant

    (@jennant)

    Hey Parag Das,

    Thank you so much for your support!

    • This reply was modified 2 years, 6 months ago by jennant.
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Modify Dropdown Menu’ is closed to new replies.