Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Mikel

    (@ogmic)

    Most of these links or menu items goes to a 404 error page. I want to be able to change them or delete them.

    Hello @ogmic,

    Please navigate to WordPress settings > permalinks and set it to post name as shown in this Dropbox image

    If you see it’s already set to post name then choose a different option and save changes then choose post name again and save changes to flush the permalink then clear cache completely and refresh the page on the frontend that gave you 404 error.

    You can remove or add those links by following instructions given in our documentation

    There are three groups of links in Tutor Dashboard, the general links, instructor links, and the bottom two links for Settings and log out. To add or remove links to/from each group, you must use their corresponding filter.

    Hi @ogmic

    You can remove the links by using this piece of code in the theme’s function.php file:

    add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard');
    function remove_some_links_dashboard($links){
    	unset($links['reviews']);
    	unset($links['wishlist']);
    	return $links;
    }

    In this example code, it will remove the “reviews” and “wishlist” links from the menu.

    Thank you!
    Best Regards,

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Changing menu – Frontend’ is closed to new replies.