I've got a custom theme that is giving me slight issues with shortcodes- they don't work. When I switched back to the default theme, the shortcodes worked fine. What do I need to look for in my custom theme to be the culprit?
If it matters, the shortcodes are for Contact Form 7 and Bookings plugins.
contact.php
<?php
/*
Template Name: Contact
*/
?>
<?php get_header(); ?>
<h2>Tell us, what's on your mind? Questions, comments, hellos- share them below.</h2>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
Any and all help is greatly appreciated.

wp_footer();in footer.php – Bainternet♦ Jul 7 '12 at 14:13wp_headis just above the closing</head>in header.php andwp_footeris just after the opening<div id="footer">in footer.php – user1255049 Jul 7 '12 at 14:20WP_DebugtoTRUEinwp-configand see if you get any errors. Then add those to your question. – mrwweb Jul 7 '12 at 15:18