My quiz attempts page not found
-
Hi,
I removed some links in my Dashboard by using this documention: https://docs.themeum.com/tutor-lms/developers/editing-tutor-dashboard/
The way I did is paste this code to Code Snippets and it worked:
add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard'); function remove_some_links_dashboard($links){ unset($links['purchase_history']); unset($links['my-quiz-attempts']); unset($links['question-answer']); return $links; }
But when I try to restore the link by deleting the lines above, the links restored but the destination page are not found (Error page not found). How I restore the Purchase history & My quiz attempts page?
Thank You.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘My quiz attempts page not found’ is closed to new replies.