Since the shortcode was only used on one template page, and only on one page in particular …
Did the following work around;
Instead of <?php the_content(); ?>
I used;
<?php
$id=heregoespostid;
$post = get_post($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
?>