Here’s my fix:
Go into the code and file the file called WcsOutputController.php- it will be under wp-content/plugins/weekly-class-schedule/controllers/
Next find this line of code (for me it’s line 11):
$classroom = $attr['classroom'];
And add a line above it and below it so it’s inside a condition loop that looks like this:
if ( isset($attr['classroom']) && ! empty($attr['classroom']) ) {
$classroom = $attr['classroom'];
}
Without digging too deep into the code on this plugin, I know this will work because it was basically trying to set a classroom value to a variable when there was no classroom value.