Hi,
I have resolved the issue so please check it now. I edited the code for blog template.
<?php
/*
Template Name: Blog
*/
?>
<?php get_header();
global $post;
if ( !post_password_required( $post ) ) {
?>
<?php
$blog_category = get_post_meta($post->ID, 'sf_blog_category', true);
$item_count = get_post_meta($post->ID, 'sf_item_count', true);
$blog_pagination = get_post_meta($post->ID, 'sf_blog_pagination', true);
?>
<!-- OPEN .inner-page-wrap -->
<div class="inner-page-wrap">
<div <?php post_class(); ?> id="<?php the_ID(); ?>">
<div class="blog-wrap">
<?php echo sf_blog_items($blog_category, $item_count, 1, false); ?>
</div>
</div>
<!-- CLOSE .inner-page-wrap -->
</div>
<?php } else {
echo '<div style="margin-left:200px" >'.get_the_password_form().'</div>';
} ?>
<!-- WordPress Hook -->
<?php get_footer(); ?>
Thanks
Mohammad