Forum Discussion

EdMcLean-f33352's avatar
EdMcLean-f33352
Community Member
4 years ago

Quiz review - Remove "Correct/Incorrect" bar from quiz review slides

Is there a way to remove the red (for incorrect) and green (for correct) bar from quiz review slides?

  • Hi, Ed.

    Thank you for reaching out!

    While you cannot edit the correct \Incorrect banners that appear when you review the quiz in Storyline 360, what you can do is cover them with a shape of the same color as your background:

    • Create a layer on your first question slide called Review.
    • By default, that layer will automatically show up during the Quiz Review.
    • On that layer, create a rectangular shape that covers the bottom of the slide. Choose no outline and a fill color that is the same as your background. If it helps, use the eyedropper tool.

    Screen Recording 2021-04-21 at 10.24.47 AM

    • Copy that layer and paste it on all your other question slides.

    Let me know if this helps!

     
    • KathyBiallas's avatar
      KathyBiallas
      Community Member

      Thanks, Maria. I utilized this suggestion, which worked partially. When progressing to the next quiz slide during review, Storyline displayed a "flash" of the correct/incorrect banner, despite my moving the shape to the top of my timeline so it was in front of every other object on the slide. I first utilized the shape on the individual slide, but I eventually transitioned it to the Feedback Master for the "Review" slide template.

  • I really hope an option to remove this will be coming soon.  As mentioned above, I can add my own that is consistent with my theme.  Unfortunately, covering it up is only a (semi) viable option if you want something on that spot.  If it's covering the thing you want to show, there doesn't seem to be a way to customize it out of the way.

  • Hi Team,

    As per accessibility point of video, even though i add a patch, i m still able to accessible. isn't there any way to get rid of at lest the close button of Review feedback popup?/

  • Hi! Since there is now the variable "Question.Correct" which basically allows me to easily create my custom feedback banner. Will there be a way to turn the default one off eventually?

    • LaurenConnelly's avatar
      LaurenConnelly
      Staff

      Hello Fridolin!

      We don't have plans to turn off the default feedback banner yet. If that changes, I'll be sure to update this discussion!

  • ThomasMennen's avatar
    ThomasMennen
    Community Member

    Hey all,
    Since there still isn't a way to get rid of the banner, I share my workaround.

    In the feedback layer I added a Javascript trigger which hides the bar with CSS:

    document.head.innerHTML += "<style>
    div[data-acc-text='Correct'],
    div[data-acc-text='Incorrect']{
    display: none;}
    </style>";


    Hope this is of any use,
    and feel free to comment on my code. :)

    • LinWong-a312185's avatar
      LinWong-a312185
      Community Member

      Hi Thomas,

      Can I ask if you add this on the Feedback Master for the Review Layer, or you add this individually on the Review Layer for each question?

      I tried on both but it didn't work for me.

      Thank you!

  • Is there a way to add a review layer that shows when they are correct and reviewing and a separate layer to review when they are incorrect?

    • JoseTansengco's avatar
      JoseTansengco
      Staff

      Hi Andrew,

      You can add a custom 'Review' layer for your Storyline 360 questions by going to form view and adding some text to the Post-quiz review field at the bottom. This will automatically create a 'Review' layer which will be displayed whenever your quizzes are reviewed. You can read more about this feature here: 

      And if there isn't an available feature for your requirement, if you give us a little more detail on what you’re trying to accomplish, I’m sure one of our talented community members will have suggestions for you!

      • AndrewBartholom's avatar
        AndrewBartholom
        Community Member

        Right, I know you can make a Review layer, my question, can I have TWO review layers, one that shows if they answered the question correctly, and one that shows if they answered the question incorrectly?

        Thanks.

  • I have the opposite problem, I want the Correct and Incorrect bars to appear but they do not.

    • JoseTansengco's avatar
      JoseTansengco
      Staff

      Hi Anne, 

      Happy to help!

      The 'correct' and 'incorrect' banners should be visible in review mode for as long as you use graded question slides which have correct and incorrect answers.

      Would you be willing to share a copy of your project file here or in private by opening a support case so we can take a closer look at how you setup your question slides? We'll delete it when we're done testing!

      • AnneDeFelice-2e's avatar
        AnneDeFelice-2e
        Community Member

        Hi Joe,

        Thanks so much for your offer of assistance. However, I have found the answer thanks to one of the Articulate Support Engineers (Thanks Lejan!) 

        The support engineer looked at my file and realized it was because my custom theme on those slides was displaying the banners as white. I changed the theme on those slides to one of the standard themes, and now the bar appears.

        Best,

        Anne

  • Hi, Anne!

    I'm so glad to hear my teammate, Lejan, was able to help out. If you run into any trouble moving forward, please let us know!😃

  • Hoi Lin,

    I've added it to the feedback master. With a trigger "When timeline starts on this slide" and in my case the trigger "If Scene.SlideNumber = value 1", to make sure it triggers only once and then the code stays in the header. But you might need to tweak that condition according to the setup of your course.

    Also the 'Correct' and 'Incorrect' strings should exactly (case sensitive) match the text the html file of your quiz.
    In my case it's actually 'Juist' and 'Onjuist' since I publish it in dutch.

    Hope this helps.