Shivian Morgan
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Ordering of EventsAwwh @johnweru that’s great to hear! Thank you so much, and I look forward to this bug being fixed in a future update!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Ordering of EventsI checked my versions, and everything was up to date. Also disabled plugins to see if that was the issue … no dice.
Then, I found what was causing the problem @johnweru – and it absolutely seems to be a bug.
When events were in List View, and I had “Expand Multi-day Events” set to “No, display only on first day of the event”, it was creating this error.
When I kept the events in List View, and changed “Expand Multi-day Events” to “Yes, display on all days of event”, the ordering shows up correctly.
So, this certainly appears to be a bug.
How / where should I go about submitting this?
- This reply was modified 2 weeks, 5 days ago by Shivian Morgan.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Ordering of EventsI really appreciate your diligence @johnweru – thank you
I’ll see if disabling anything changes the results, and otherwise submit a support ticket if I can’t figure it out.
I appreciate all your support!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Ordering of EventsI’ve also tried using event names with and without emoji (in case that was causing an issue) but that didn’t work either.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Ordering of EventsDoing more troubleshooting, it appears just fine when in Grid mode, but misaligns the order when in List mode.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Ordering of EventsThank you for your response, John!
I checked to ensure that all the events are sharing the same timezone, ensured my site has the correct timezone set in WordPress, and ensured my Google Calendar is using the same timezone as well. Everything is aligned based on the settings page you sent me.
I also tried all 3 settings for the timezone in the plugin – none of them correct for this error. Here’s the page with the misaligned event – https://www.chiradfae.com/calendar/events-summer-2026-plugin – as you can see “⛱️ Lakeside Hangouts” should be displaying above each of the “⚪️ Available” blocks. It’s like it’s sorting the page by end time, not start time.
Forum: Fixing WordPress
In reply to: Comments not working, goes to blank page.I found it was a 2 fold problem. First, comments were not entering my database and I was getting a blank page. To have comments be entered I had to make my URI “www.shivian.com/blog” not just “shivian.com/blog” – this made comments appear in my database, however I still got a blank page. I found that this was because of the HTTP referer issue, hence I created the following simple hack which works for me, hopefully it will work for you. If it has a big hole it in or somthing (not a PHP guru, just enough knowledge to know how to modify stuff) please let me know. Thanks and goodluck to you all!
// origional
// $location = (empty($_POST[‘redirect_to’])) ? $_SERVER[“HTTP_REFERER”] : $_POST[‘redirect_to’];// shivian.com hack
$location = $_SERVER[‘HTTP_REFERER’];