• Running the latest version of the plugin…
    Noticed my layout was getting messed up.
    Tracked it down to
    …/the-events-calendar/lib/the-events-calendar.class.php:304
    return apply_filters( 'tribe_events_view_before_html_data_wrapper', sprintf( '<div id="tribe-events" class="tribe-no-js" %s>%s', implode(' ', $attribute_html ), $html ), $data_attributes, $html );
    it should be
    return apply_filters( 'tribe_events_view_before_html_data_wrapper', sprintf( '<div id="tribe-events" class="tribe-no-js" %s>%s</div>', implode(' ', $attribute_html ), $html ), $data_attributes, $html );

    Notice the closing </div>

    http://wordpress.org/extend/plugins/the-events-calendar/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Missing Div Causing Layout issues’ is closed to new replies.