HTML error in function em_display_event_locations
-
File includes/functions-template.php around line 270. It should be closing div tag, not another opening.
Now:
<?php endif; // single ?> <?php echo $output; ?> </span> <div> <?php }
Fixed:
<?php endif; // single ?> <?php echo $output; ?> </span> </div> <?php }
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘HTML error in function em_display_event_locations’ is closed to new replies.