jannybeanca
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offYeah. That is what I figured. Since I am only using it as a widget it was no big deal to changed the constants. But your fix appears more universal. I actually switched my fix to yours. 🙂
And I just updated the plugin (updated yesterday) and they haven’t fixed this issue so I did your fix again. LOL!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offOh. I didn’t see MortimerMcMire315’s switch. That may be better. 🙂
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offMine actually was broken again this morning. So I was able to fix it.
I found this file in the plugin:
google-calendar-events/vendor/nesbot/carbon/src/Carbon/Carbon.phpAnd found this content:
/**
* The day constants
*/
const SUNDAY = 0;
const MONDAY = 1;
const TUESDAY = 2;
const WEDNESDAY = 3;
const THURSDAY = 4;
const FRIDAY = 5;
const SATURDAY = 6;and switched it to
/**
* The day constants
*/
const SUNDAY = 6;
const MONDAY = 0;
const TUESDAY = 1;
const WEDNESDAY = 2;
const THURSDAY = 3;
const FRIDAY = 4;
const SATURDAY = 5;and my headings work fine now in the widget. Not sure if this breaks anywhere else because that is the only place I use it.
Hope this helps. And hopefully they fix it before the next update.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offSucky. I am not sure what else I did to make mine work. Maybe create an even NEW calendar with the fresh install?
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offDid you test the OLD calendar. Cause mine came back too and that was the one I used that switched the headings back.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offDid you upload the same one that you had? I actually downloaded the newest zip today. Maybe that is it?
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offJust thought I would let you know that I completely removed the plugin and then re-installed it from scratch and the headings are working fine.
Hope this helps.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offMe too! Super frustrating.