Hide the Notify Students Checkbox in the Grader View of the Assignment Module?

Hide the Notify Students Checkbox in the Grader View of the Assignment Module?

by Lillie Williams -
Number of replies: 1

Hello! 

I'm somewhat new to making changes in my Moodle Boost theme with scss. So, I'm hoping someone can help me here. 

I need to hide the checkbox beside "Notify Students" at the bottom of the grading page for the Assignment Module.

So far, I know for sure that  the following will hide all of the checkboxes in my Moodle Instance:


.input[type="radio"] ,input[type="checkbox"] {  display: none;}

I was trying to do the following but it didn't work:

.course-144 .path-mod-assign .input[type="radio"] ,input[type="checkbox"] {display: none;}

Can someone help me get the correct code to hide only the checkbox on the grading portion of the Assignment Module?

Image of Google Dev mode - inspecting element.


Average of ratings: -
In reply to Lillie Williams

Re: Hide the Notify Students Checkbox in the Grader View of the Assignment Module?

by Lillie Williams -
For the benefit of anyone else looking to do this, I was able to get this working with the following:

input[type="checkbox"][name="sendstudentnotifications"] {
display: none;
}

Sometimes a night's rest and a cup of coffee are beneficial in solving these things. smile