And if you want to display the title you need also the part to display the custom post type title:
<?php if ( is_single() ) : ?>
<h1 class="entry-title">
<?php the_title(); ?> </h1>
<?php else : ?>
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h1>
<?php endif; // is_single() ?>
Thanks @boborg for the help, what theme are you using? Did you had the same problem? I think I should add some notes about how to use the plugin in a theme which is not twentythirteen (copy the own single template to the plugin ones and make sure to include title and thumbnail output)