No Events Found
-
In 5.9 EM version the mata key is _event_start_date and _event_end_date.
In 5.8 version the mata key is _start_ts and _end_ts.From 5.8 to 5.9, all of the old events can’t be found from dashboard because the meta key is changed, would you please help me to check?
SELECT SQL_CALC_FOUND_ROWS
wp_62_posts.ID
FROM
wp_62_posts
INNER JOIN wp_62_postmeta ON (
wp_62_posts.ID = wp_62_postmeta.post_id
)
INNER JOIN wp_62_postmeta AS mt1 ON (wp_62_posts.ID = mt1.post_id)
WHERE
1 = 1
AND (
wp_62_postmeta.meta_key = ‘_start_ts’
AND (
(
mt1.meta_key = ‘_end_ts’
AND mt1.meta_value >= ‘1615852800’
)
)
)
AND wp_62_posts.post_type = ‘event’
AND (
wp_62_posts.post_status = ‘publish’
OR wp_62_posts.post_status = ‘acf-disabled’
OR wp_62_posts.post_status = ‘future’
OR wp_62_posts.post_status = ‘draft’
OR wp_62_posts.post_status = ‘pending’
OR wp_62_posts.post_status = ‘private’
)
GROUP BY
wp_62_posts.ID
ORDER BY
wp_62_postmeta.meta_value + 0 ASC
LIMIT 0,
20`Thanks
The page I need help with: [log in to see the link]
- The topic ‘No Events Found’ is closed to new replies.