I am a fair newbie to Wordpress but my client has given me what might be an impossible task.
We want to display an embedded JibJab animation without the header and footer provided by the theme, so I coded a simple template:
<?php
/*
Template Name: JibJab
*/
?>
<?php
if ( have_posts() ) : while( have_posts() ) : the_post();
the_content();
endwhile; endif; ?>
This sort of works but with major problems. We also want to use certain plugins like Google Analytics, SEO and Really Simple Facebook.
The problem is that without the header/footer, none of the above work. No SEO tags are displayed and the Facebook, Twitter and Email buttons do not display properly. It doesn't look like Google Analytics is working either.