I have the same problem but I dont know where to insert the strand in my single.php here is an example of my single.php if you could explain where to place it. That would be awesome.
<?php get_header(); ?>
<!– BEGIN content –>
<div id=”content”>
<?php
if (have_posts()) : the_post();
?>
<div class=”single”>
<h2><?php the_title(); ?></h2>
<div class=”content”><?php the_content(); ?></div>
</div>
<div id=”comments”>
comments disabled.
</div>
<?php else : ?>
<div class=”single”>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
</div>
<!– END content –>
<?php get_sidebar(); get_footer(); ?>