The reason is because of the code that is in the footer I put in there:
<?php
$content_post = get_post(80);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
?>
<?php if( $content ) : ?>
<?php echo $content; ?>
<?php endif; ?>
but I would not expect this piece of code to be displaying All-in-One event posts. It is simply getting a single post with the id 80, which has nothing to do with All-in-One.