????JFIF??x?x????'
| Server IP : 172.67.174.47  /  Your IP : 216.73.216.83 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/tempvsty/././eaabusiness.com/wp-content/themes/thecompany/ | 
| Upload File : | 
<?php
/**
 * The template for displaying comments.
 *
 * This is the template that displays the area of the page that contains both the current comments
 * and the comment form.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package thecompany
 */
/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if ( post_password_required() ) {
	return;
}
?>
<div id="comments" class="swift-comments">
	<?php // You can start editing here -- including this comment! ?>
	<?php if ( have_comments() ) : ?>
		<h3 class="content-title">
			<?php
			$comments_number = get_comments_number();
			if ( 1 === $comments_number ) {
				/* translators: %s: post title */
				printf( _x( 'One Comment on “%s”', 'comments title', 'thecompany' ), get_the_title() );
			} else {
				printf(
				/* translators: 1: number of comments, 2: post title */
					_nx(
						'%1$s Comment on “%2$s”',
						'%1$s Comments on “%2$s”',
						$comments_number,
						'comments title',
						'thecompany'
					),
					number_format_i18n( $comments_number ),
					esc_attr(get_the_title())
				);
			}
			?>
		</h3>
		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
		<nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
			<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'thecompany' ); ?></h2>
			<div class="nav-links">
				<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'thecompany' ) ); ?></div>
				<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'thecompany' ) ); ?></div>
			</div><!-- .nav-links -->
		</nav><!-- #comment-nav-above -->
		<?php endif; // Check for comment navigation. ?>
		<ul>
			<?php
				wp_list_comments( array(
					'style'      => 'ul',
					'short_ping' => true,
				) );
			?>
		</ul><!-- .comment-list -->
	<?php endif; // Check for have_comments(). ?>
	<?php
		// 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.', 'thecompany' ); ?></p>
	<?php endif; ?>
	<?php 
$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
	$comments_args = array(        
         'comment_field' => '<div class="col-sm-12"><div class="single"><p class="comment-form-comment"><textarea class="form-control" name="comment" aria-required="true" placeholder="'.__('Leave your message','thecompany').'" rows="5" cols="37" wrap="hard"></textarea></p></div></div>',
		'fields' => apply_filters( 'comment_form_default_fields', array(
			
    'author' =>
      '<div class="col-sm-4"><div class="single"><p class="comment-form-author">' .
      '<input id="author" class ="form-control" placeholder="'.__('Name','thecompany').'*" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) .
      '" size="30"</p></div></div>',
    'email' =>
      '<div class="col-sm-4"><div class="single"><p class="comment-form-email">' .
      '<input id="email" class="form-control" placeholder="'.__('Email','thecompany').'*" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) .
      '" size="30"</p></div></div>',
    'url' =>
      '<div class="col-sm-4"><div class="single"><p class="comment-form-url">' .
      '<input id="url" class="form-control" placeholder="'.__('URL','thecompany').'" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) .
      '" size="30" /></p></div></div>'
    )
  ),
);
	comment_form($comments_args); ?>
</div><!-- #comments -->