Hello,
I tried but i cannot remove only the quiz option.
Could you please be more specific with the code?
Thanks,
Regards,
Hristijan
Hello @hristijanv123
Ok please let me know which specifc section you want to hide from the dashboard
My Quiz Attempts? or Quiz Attempts.
You can use this code
add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard');
function remove_some_links_dashboard($links){
unset($links['my-quiz-attempts']);
unset($links['quiz-attempts']);
return $links;
}
Hi,
I was able to remove the My Quiz Attempts and Quiz Attempts from desktop, but it still appears on mobile. Pleases see scrshot – https://prnt.sc/1jx67_CJ4Y3O
How can i remove it from mobile as well?
Thank you!
Regards,
Hristijan Velevski
Hi @hristijanv123
You have to edit the plugin template file to remove the menu.
File Path: wp-content/plugins/tutor/templates/dashboard.php
Remove lines 56-61 and edit line 241 <a class="tutor-col-6
Thank you!
Best Regards,