_EventStartDate gets set to null, and event breaks
-
I’m not sure what goes wrong. But, when we edit an existing event, its common that it will break.
Tracking it down, we find that _EventStartDate/_EventEndDate get nulled. (_EventStartDateUTC/_EventEndDateUTC are not).
This in turn causes the page to be un-editable, and it does not render properly.
My ‘fix’ is to update them in the db:
update wp_postmeta set meta_value = ‘2023-07-26 19:00:00’ where post_id = 2282107 and meta_id = 2561883;
| 2561882 | 2282107 | _EventStartDate ? ? ? ? ? ? ? ? ? ?| ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| | 2561883 | 2282107 | _EventEndDate ? ? ? ? ? ? ? ? ? ? ?| ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| | 2561884 | 2282107 | _EventStartDateUTC ? ? ? ? ? ? ? ? | 2023-07-26 18:40:57 ? ? ? ? ? ?| | 2561885 | 2282107 | _EventEndDateUTC ? ? ? ? ? ? ? ? ? | 2023-07-26 18:40:57 ? ? ? ? ? ?|
Viewing 15 replies - 1 through 15 (of 15 total)
Viewing 15 replies - 1 through 15 (of 15 total)
- The topic ‘_EventStartDate gets set to null, and event breaks’ is closed to new replies.