Missing element in venue.php causing HTML validation error
-
Just a quick heads up that src/views/modules/meta/venue.php is missing the DT tag on line 24, which causes an HTML validation error:
<dl> <?php do_action( 'tribe_events_single_meta_venue_section_start' ) ?> <dd class="tribe-venue"> <?php echo tribe_get_venue() ?> </dd>Applying the empty DT fix used in organizer.php corrects the issue:
<dl> <?php do_action( 'tribe_events_single_meta_venue_section_start' ) ?> <dt style="display:none;"><?php // This element is just to make sure we have a valid HTML ?></dt> <dd class="tribe-venue"> <?php echo tribe_get_venue() ?> </dd>
The topic ‘Missing element in venue.php causing HTML validation error’ is closed to new replies.