🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-05 21:35:35 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
staging.eliteewallet.com
/
wp-content
/
themes
/
avas
📍 /home/eliteewa/staging.eliteewallet.com/wp-content/themes/avas
🔄 Refresh
✏️
Editing: comments.php
Writable
<?php /** * * @package tx * @author theme-x * @link https://theme-x.org/ *================================== * Comments *================================== * */ if (post_password_required()) { return; } ?> <div id="comments" class="comments-area"> <?php if (have_comments()) : ?> <h3 class="comments-title"> <?php printf(_nx('One comment', '%1$s comments', get_comments_number(), 'comments title', 'avas'), number_format_i18n(get_comments_number()), '<span>' . get_the_title() . '</span>'); ?> </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"> <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'avas'); ?></h2> <div class="nav-links"> <div class="nav-previous"><?php previous_comments_link(esc_attr__('Older Comments', 'avas')); ?></div> <div class="nav-next"><?php next_comments_link(esc_attr__('Newer Comments', 'avas')); ?></div> </div><!-- .nav-links --> </nav><!-- #comment-nav-above --> <?php endif; // check for comment navigation ?> <ol class="comment-list"> <?php wp_list_comments(array( 'style' => 'ol', 'short_ping' => true, 'callback' => 'tx_comment' )); ?> </ol><!-- .comment-list --> <?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?> <nav id="comment-nav-below" class="navigation comment-navigation" role="navigation"> <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'avas'); ?></h2> <div class="nav-links"> <div class="nav-previous"><?php previous_comments_link(esc_attr__('Older Comments', 'avas')); ?></div> <div class="nav-next"><?php next_comments_link(esc_attr__('Newer Comments', 'avas')); ?></div> </div><!-- .nav-links --> </nav><!-- #comment-nav-below --> <?php endif; // check for comment navigation ?> <?php endif; // have_comments() ?> <?php // If comments are closed and there are comments, let's leave a little note, shall we? if (!comments_open() && '0' != get_comments_number() && post_type_supports(get_post_type(), 'comments')) : ?> <p class="no-comments"><?php esc_html_e('Comments are closed.', 'avas'); ?></p> <?php endif; ?> <?php $req = get_option('require_name_email'); $aria_req = ( $req ? " aria-required='true'" : '' ); $comments_args = array( // change the title of send button 'label_submit' => esc_html__('Submit', 'avas') , // change the title of the reply section 'title_reply' => esc_html__('Leave a Comment', 'avas'), // remove "Text or HTML to be displayed after the set of comment fields" 'comment_notes_after' => '', // redefine your own textarea (the comment body) 'comment_field' => ' <div class="form-group"><textarea class="form-control" rows="10" id="comment" name="comment" aria-required="true" placeholder="' . esc_html__('Write Comment', 'avas') . '"></textarea></div>', 'fields' => apply_filters('comment_form_default_fields', array( 'author' => '<div class="form-group">' . '<label for="author">' . esc_html__('Name', 'avas') . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input class="form-control" id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . ' /></div>', 'email' => '<div class="form-group"><label for="email">' . esc_html__('Email', 'avas') . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input class="form-control" id="email" name="email" type="text" value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . ' /></div>', 'url' => '<div class="form-group"><label for="url">' . esc_html__('Website', 'avas') . '</label>' . '<input class="form-control" id="url" name="url" type="text" value="' . esc_attr($commenter['comment_author_url']) . '" size="30" /></div>' ) ), ); comment_form($comments_args); ?> </div><!-- #comments -->
💾 Save Changes
❌ Cancel