Hi there,
You are testing the limits of the LuxCal calendar. Great
And yes, you found a (kind of) bug. It is currently not possible to have the values 1 and 11 in the same "View buttons on navigation bar" list.
Note: All specified values must also be present in the option "Available calendar views" (which is just above).
When you edit the file pages/settings.php and change line 30 from . . .
if (substr_count($buttons.',',$buttonNr.',') > 1 or strpos($range.',',$buttonNr.',') === false) { return false; }
to . . .
if (substr_count(','.$buttons.',',','.$buttonNr.',') > 1 or strpos($range.',',$buttonNr.',') === false) { return false; }
It should work fine.
I will change this for the next calendar version.
Roel