neutrino876
Forum Replies Created
-
Hi Nick, Sorry i never got round to replying.
I think you may have misunderstood my initial post.
For example i have the following events in my calendar for two days:
Day 1 – Monday
Seminar – 5.00pm
Dinner – 7.00pmDay 2 – Tuesday
Breakfast – 8.00am
Final Presentation – 10.00amWhat i am trying to achieve is to show the last, current and next event. So if the time is say 7am on Tuesday it would show:
Last event: Dinner – 7.00pm, 12 hours ago
Current event: Breakfast – 8.00am, 1 hour from now
Next event: Final Presentation – 10.00am, 3 hours from nowI have tried to use the Event settings to do this but it only allows me to change the earliest event in days, weeks, months or years instead of by just a single event before or after.
I hope this clarifies what i am trying to do, if it is possible!
Forum: Plugins
In reply to: [The Events Calendar] Show events in blog roll not workingThanks for your reply robphat, i don’t want to post the same topic twice so would you be kind enough to share a solution once you find one please?
Regards, Jack
Forum: Plugins
In reply to: [The Events Calendar] Show events in blog roll not workingHi robphat, i am experiencing the same issue. In Settings the option is ticked but nothing appears in the blog.
Did you find a solution? Any help would be most appreciated.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Calendar days still off by one dayThanks Nick, i appreciate your time to reply.
Would like to take this opportunity for the work and time you guys have put into this. Compared to v2 this has definitely been a good move forward. I can understand that the transition to the new version will take time to perfect, so thank you for all the hard work!
Regards, Jack
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Calendar days still off by one dayCredit to jennybeanca for this temporary fix:
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 = 1;
const MONDAY = 2;
const TUESDAY = 3;
const WEDNESDAY = 4;
const THURSDAY = 5;
const FRIDAY = 6;
const SATURDAY = 0;I hope this helps someone else with the same issue!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Heading for day of week is offThank you jannybeanca, your fix has worked for me. I hope the developers can introduce a permanent fix soon.