• Resolved bigsurreal

    (@bigsurreal)


    Hi – The course I’m working on does not have correct answers since it is based upon experience and self-assessment/awareness.

    In each answerable unit element, “mandatory” is clicked on, and “assessable” is clicked off. However, when tested, it tells me that my “no” answer is incorrect (“yes” is correct, and if both “yes” and “no” are clicked it is also wrong). Given the sensitive nature of the course, we do not want right or wrong answers.

    Can you let me know if I overlooked something or if this is not possible at the moment? I hope it is!!

    Thanks

    https://wordpress.org/plugins/coursepress/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey there bigsurreal, how are you doing today?

    This not possible out of a box with the current version of the plugin. However, you could hide right/wrong icons and the text below with some custom CSS so it is not displayed when student is viewing the units.

    Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .checkbox_input_module .incorrect, .radio_input_module .incorrect, .checkbox_input_module .correct, .radio_input_module .correct {
    background-image: none;
    }

    This will remove the red and green icons. If you want to remove the grade text as well (1 of 1 correct) you can add the following as well:

    .module_grade_right {
    display: none;
    }

    Please let me know if this helps 🙂

    Cheers,
    Bojan

    Thread Starter bigsurreal

    (@bigsurreal)

    Can you also let me know the CSS for hiding “submit different answer” from student view? Since it can’t be done for field answers, I’d rather not have it there at all. BTW, The code above worked perfectly!

    Thanks,

    Laura

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey again Laura,

    Sure thing! Please try adding the following CSS code:

    .module_grade_left {
    display: none;
    }

    This should remove submit different answer from the unit.

    Hope this helps 🙂

    Best regards,
    Bojan

    Thread Starter bigsurreal

    (@bigsurreal)

    works like a charm. you’re the best, Bojan!

    Cheers

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Glad I could help, have a great weekend 🙂

    Cheers,
    Bojan

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

The topic ‘Coursepress multiple choice forcing a correct answer’ is closed to new replies.