I'm trying to override function getCal() in /modules/mod_jevents_cal/tmpl/default/calendar.php. My intent is to remove the HTML division at line 207 and the </div> tab at line 237.
I'm following the instructions at
Customising Layouts - Template Override Basics. So far I have successfully overridden two JEvents calendar files. My overrides are /templates/protostar/html/mod_jevents_cal/flat/calendar.php and /templates/protostar/html/com_jevents/flat/year/listevents_body.php. Those work well.
In order to modify the other calendar.php file, I have copied it into the /templates/protostar/html/mod_jevents_cal/default/ directory. Then at line 20 I edited the class name from DefaultModCalView to OverrideDefaultModCalView, Further I have edited other parts of the file as needed.
Unfortunately, the original /modules/mod_jevents_cal/tmpl/default/calendar.php file is still being used. Breakpoints set in the overriding file are never hit. How can I override this file?