• Resolved jennant

    (@jennant)


    Hi Support team,

    Can you please help me to modify the dropdown menu here (https://imgur.com/a/ZnEwlqO)?

    Specifically, I want:

    • Remove some pages (links)
    • Remove ‘Create a New Course’ part
    • Change the color of hover links

    Thank you so much for your support!

    Jenna

    The page I need help with: [log in to see the link]

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 10 months, 4 weeks ago by jennant.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Modify Dropdown Menu’ is closed to new replies.