Will,
First of all, great plugin. I’m having the same problem. I’m using a child theme based on Vantage. I’ve narrowed it down to the fact that I’m using a custom page template which is basically a blank page. I know this is true because when I activate the parent (which places it on a normal page), it works. Not being a programmer, I don’t know what in the blank page template (which I have to have for this) is breaking it. I didn’t (couldn’t) write this–I think I got the code off a web page somewhere. Can you have a look?
Below is the code for the page template.
Thanks a lot.
Steve (a past donor ??
<?php
/**
Template Name: Survey Template
*/
?>
<html>
<head>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<style type=”text/css”>
</style>
<title><?php wp_title( ‘|’, true, ‘right’ ); bloginfo(‘name’); ?></title>
<?php wp_head(); ?>
</head>
<body>
<?php while (have_posts()) : the_post(); ?>
<div id=”container”>
<div id=”content” role=”main”>
<div id=”page-content”>
<?php the_content(); endwhile; ?>
</div>
</div>
</div>
</body>
</html>