I love this WP plugin and fully intend to donate.
I had the slideshow working great on site I'm developing on my Mac, so I can't post the link here. I know zero coding. I had placed DCG into "page.php" according to the method given in instructions and all was working fine.
I thought I was making correct edits to fit images, but instead screwed up my page files. Then I couldn't fix it!! I somehow deleted a line or symbol that I need. Can you please look at my current page.php code and tell me what is missing (my entire site went blank)?
If it helps, I had edited it near the very bottom, right before footer.
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div id="wp_content_wrapper" class="autoheight">
<div id="wp_content" class="autoheight content_typography">
<div id="wp_content_single">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="posttitle"><?php the_title(); ?></h2>
<?php the_content('<p>Read the rest of this entry »</p>'); ?>
<div class="fix"></div>
<?php wp_link_pages(array('before' => <div
'<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
</div>
<?php if($post->comment_status == 'open') comments_template(); ?>
<?php endwhile; edit_post_link('', '<p>', '</p>'); else: ?>
<div class="post">
<p>Sorry, no posts matched your criteria.</p>
</div>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>