• After I upgraded from 5.8.3 to 5.9.11, I found two problem.
    1: “No event found” from dashboard, I can’t find any published events from the list table.
    2: Datepicker not work after upgarding, lots of people provide feedback for this problem.

    Would you please provide some ideas?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    Hi,

    You can try the latest EM Dev version 5.9.11.3

    For dev version upgrade – https://wp-events-plugin.com/documentation/upgrade-dev-version/

    Thread Starter a_hongjie

    (@a_hongjie)

    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

    Plugin Support angelo_nwl

    (@angelo_nwl)

    Hi, I’ve let the Devs know about this, should get fixed soon.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No Events Found’ is closed to new replies.