Hi Sharmstr,
Thanks for the reply. Sorry – I was tired and had just copied the comment stuff from your post meta code. When I looked at it again today, I realized that I was just appending a post meta array and not doing anything with it. I got it working:
COPY CODE
<a href="<?php get_permalink()?>#comments">,
<i class="icon-comment-empty" data-original-title="<?php echo sprintf( _n( 'This article has one comment', 'This article has %1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) )?>" data-toggle="tooltip" data-placement="top"></i>
<?php
echo get_comments_number();
echo sprintf( _n( ' comment', ' comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) );
?>
</a>