I'm using the i-Blog theme and don't see any of the code snippets in my templates. I would very much to like to use this plugin on individual posts, main page posts and comments but none seem to be working.
Here is my index.php template file:
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content('Read more...'); ?>
<div class="spacer"></div>
<small ><?php the_time('F jS, Y') ?> by <?php userphoto_the_author_thumbnail(); the_author() ?> | <?php edit_post_link('Edit','','<strong> | </strong>'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></small>
</div>
<br class="kosong"/>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div>
<div class="alignright"><?php posts_nav_link('','Next Entries »','') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Also, the author_comment_link() function isn't working in comments.php. Have I come across a buggy theme?