• Resolved grindhorse

    (@grindhorse)


    Hi!

    I’m setting up a quiz but the idea is that tutors will provide a more nuanced breakdown of their results, so we don’t want to see the pass/fail on any of the quizzes.

    What can I disable or edit on the plugin to remove the parts that show the student pass or fail?

    I don’t mind it still being on the system, I just don’t want the students to see it.

Viewing 1 replies (of 1 total)
  • Hi @grindhorse

    You could try to unset the quiz attempts from the dashboard by adding the following to your functions.php

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

    Something like this should hide the dashboard quiz attempts, as for the platform generating a gradebook with results, you can try do hide the gradebook on the landing page by using CSS, adding a ‘display: none;’ property should do the trick

Viewing 1 replies (of 1 total)
  • The topic ‘How to hide or remove pass/fail grade’ is closed to new replies.