• Resolved hollymcr

    (@hollymcr)


    1. [feed-id] is broken, causes PHP to abort.
    get_feed_id() doesn’t exist. (class-gce-event.php#367)

    2. [is-list], [is-grid] etc always return false. Cause appears to be in get_event_markup(); $this->type isn’t set before diverting to use-builder(). Alternatively use_builder should set $this->type itself. Simple fix is to move the assignment to $this->type above the if statement.

    if( empty( $use_simple ) ) {
        return $this->use_builder();
    }
    //Set the display type (either tooltip or list)
    $this->type = $display_type;

    I suspect this also affects other shortcodes but I don’t know my way around the gcal code to confirm.

    https://wordpress.org/plugins/google-calendar-events/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Phil Derksen

    (@pderksen)

    We investigated and this looks like a bug we didn’t catch in the rewrite. We’ll try to release a patch ASAP. Thanks for letting us know!

    Plugin Contributor Nick Young

    (@nickyoung87)

    This should be fixed now with the 2.0.1 update, let us know if you encounter anymore issues.

    Thanks!

    Thread Starter hollymcr

    (@hollymcr)

    Seems fixed for me now, thanks!

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