File: D:/HostingSpaces/WKIst/sustarianliving.com/wwwroot/wp-content/themes/hemlock/comments.php
<div class="post-comments" id="comments">
<?php
if ( comments_open() ) :
echo '<div class="post-box"><h4 class="post-box-title">';
comments_number(__('No Comments','solopine'), __('1 Comment','solopine'), '% ' . __('Comments','solopine') );
echo '</h4></div>';
endif;
echo "<div class='comments'>";
wp_list_comments(array(
'avatar_size' => 50,
'max_depth' => 5,
'style' => 'ul',
'callback' => 'solopine_comments',
'type' => 'all'
));
echo "</div>";
echo "<div id='comments_pagination'>";
paginate_comments_links(array('prev_text' => '«', 'next_text' => '»'));
echo "</div>";
$custom_comment_field = '<p class="comment-form-comment"><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>'; //label removed for cleaner layout
comment_form(array(
'comment_field' => $custom_comment_field,
'comment_notes_after' => '',
'logged_in_as' => '',
'comment_notes_before' => '',
'title_reply' => __('Leave a Reply', 'solopine'),
'cancel_reply_link' => __('Cancel Reply', 'solopine'),
'label_submit' => __('Post Comment', 'solopine')
));
?>
</div> <!-- end comments div -->