• 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)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘v2 bugs’ is closed to new replies.