Current File : /home/natitnen/hintact.com/wp-content/themes/ave/comments.php
<?php

/**
 * The template for displaying comments
 *
 * The area of the page that contains both current comments
 * and the comment form.
 *
 * @package Ave
 */

// If a post password is required or no comments are given and comments/pings are closed, return.
if ( post_password_required() ) {
	return;
}

?>
<div id="comments" class="comments-area">
		
	<div class="container">

		<div class="row">

			<div class="col-md-8 col-md-offset-2">
			
			<?php 
				
				$req      = get_option( 'require_name_email' );
			    $aria_req = ( $req ? " aria-required='true'" : '' );
			    $html_req = ( $req ? " required='required'" : '' );
			    $html5    = true;
				$fields   =  array(
					'author' => '<div class="col-md-4 col-sm-6"><p class="comment-form-author"><input id="author" name="author" placeholder="' . esc_attr__( 'Name', 'ave' ) . ( $req ? '*' : '' ) . '" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" maxlength="245"' .  $aria_req . $html_req . ' /></p></div>',
					            
					'email'  => '<div class="col-md-4 col-sm-6"><p class="comment-form-email"><input id="email" name="email" placeholder="' . esc_attr__( 'Email', 'ave' ) . ( $req ? '*' : '' ) . '" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" maxlength="100" ' . $html_req  . ' /></p></div>',
					            
					'url'    => '<div class="col-md-4 col-sm-6"><p class="comment-form-url"><input id="url" name="url" placeholder="' . esc_attr__( 'Website', 'ave' ) . '" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="200" /></p></div>',
				);
				
			$consent           = empty( $commenter['comment_author_email'] ) ? '' : ' checked="checked"';	
			$fields['cookies'] = '<div class="col-sm-12"><p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $consent . ' />' .
							 '<label for="wp-comment-cookies-consent">' . esc_html__( 'Save my name, email, and website in this browser for the next time I comment.', 'ave' ) . '</label></p></div>';		
			?>
			<?php comment_form( array(

					'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">',
					'title_reply' => esc_html__( 'Leave a comment', 'ave' ),
					'title_reply_after' => '</h3>',

					'fields' => $fields,
					
					'comment_field' => '<div class="col-sm-12"><p class="comment-form-comment"><textarea id="comment" name="comment" placeholder="'. esc_attr__( 'Comment', 'ave' ) .'" rows="6" required="required"></textarea></p></div>',
					
					'comment_notes_before' => '',
					'label_submit' => esc_attr__( 'Submit', 'ave' ),
					'submit_field' => '<div class="col-sm-12"><p class="form-submit">%1$s %2$s</p></div>',
			) ); ?>

			</div><!-- /.col-md-8 col-md-offset-2 -->
		</div><!-- /.row -->
	</div><!-- /.container -->
	
	<div class="container">
		<div class="row">
			<div class="col-md-8 col-md-offset-2">				
			
			<?php if ( have_comments() ) : ?>
				<ol class="comment-list">
					<?php
						wp_list_comments( array(
							'style' => 'ol',
							'callback' => 'liquid_comments_callback'
						) );
					?>
				</ol>		
			<?php

				get_template_part( 'templates/comment/nav' );

			endif; // Check for have_comments().
		
			// If comments are closed and there are comments, let's leave a little note, shall we?
			if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
		
				<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'ave' ); ?></p>

			<?php endif; ?>
				
			</div><!-- /.col-md-8 col-md-offset-2 -->
		</div><!-- /.row -->
	</div><!-- /.container -->

</div><!-- /.comments-area -->