Thank you for the awesome script. It is the only solution to a huge problem that I am facing with having over 50 calendars tied to one website via Google. I had a few sample calendars up and running a few days ago but it now seems that the dates aren't showing up correctly.
As you can see here: http://ohno.ws/gcal-flow.html the dates are in the past but if you click on "See all events" at the bottom of the page, the events listed are actually for future dates. I have mode set to 'upcoming' and am using a custom date format of:
Could you please assist me with resolving this issue so that the dates are showing up as the date that the event will take place instead of when the event was created in google calendar?
Sugi,
Thank you for the awesome script. It is the only solution to a huge problem that I am facing with having over 50 calendars tied to one website via Google. I had a few sample calendars up and running a few days ago but it now seems that the dates aren't showing up correctly.
As you can see here: http://ohno.ws/gcal-flow.html the dates are in the past but if you click on "See all events" at the bottom of the page, the events listed are actually for future dates. I have mode set to 'upcoming' and am using a custom date format of:
date_formatter: function(d) {function pad(n){return n<10 ? '0'+n : n}
return (pad(d.getMonth()+1)) + "/" + pad(d.getDate()) + "/" + pad(d.getUTCFullYear()) + " at " + pad(d.getHours()) + ":" + pad(d.getUTCMinutes()) .toString().substr(-2) }
Could you please assist me with resolving this issue so that the dates are showing up as the date that the event will take place instead of when the event was created in google calendar?
Thank you, Jesse Dockett