at path:
ROOT
/
wp-content
/
themes
/
kroth
/
comments.php
run:
R
W
Run
assets
DIR
2023-04-17 09:50:05
R
W
Run
inc
DIR
2023-04-17 09:50:05
R
W
Run
languages
DIR
2023-04-17 09:50:05
R
W
Run
layouts
DIR
2023-04-17 09:50:05
R
W
Run
woocommerce
DIR
2023-04-17 09:50:05
R
W
Run
404.php
1.42 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
archive.php
3.44 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
comments.php
4.42 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
footer.php
1.14 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
functions.php
1.53 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
header.php
7.78 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
index.php
3.36 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
page.php
3.24 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
readme.txt
0 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
rtl.css
449 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
screenshot.png
203 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
search.php
1.98 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
searchform.php
381 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
sidebar-shop.php
465 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
sidebar.php
1.24 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
single-portfolio.php
2.98 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
single-team.php
2.37 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
single.php
2.84 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
style.css
2.84 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
taxonomy.php
1.58 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
woocommerce.php
2.52 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
wpml-config.xml
791 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
error_log
up
📄
comments.php
Save
<?php /* * The template for displaying comments. * Author & Copyright: VictorThemes * URL: https://victorthemes.com */ /* * 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="krth-comments-area comments-area"> <div class="comments-section"> <?php // You can start editing here -- including this comment! if ( have_comments() ) : ?> <h3 class="comments-title"> <?php printf( // WPCS: XSS OK. esc_html__( _nx( 'Comment (%1$s)', 'Comments (%1$s)', get_comments_number(), 'comments title', 'kroth' ) ), 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 vt-comment-navigation" role="navigation"> <h2 class="vt-screen-reader-text"><?php esc_html_e( 'Comment navigation', 'kroth' ); ?></h2> <div class="vt-nav-links"> <div class="vt-nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'kroth' ) ); ?></div> <div class="vt-nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'kroth' ) ); ?></div> </div><!-- .nav-links --> </nav><!-- #comment-nav-above --> <?php endif; // Check for comment navigation. ?> <ol class="comments"> <?php wp_list_comments('type=all&callback=kroth_comment_modification'); ?> </ol><!-- .comment-list --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> <nav id="vt-comment-nav-below" class="navigation vt-comment-navigation" role="navigation"> <h2 class="vt-screen-reader-text"><?php esc_html_e( 'Comment navigation', 'kroth' ); ?></h2> <div class="vt-nav-links"> <div class="vt-nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'kroth' ) ); ?></div> <div class="vt-nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'kroth' ) ); ?></div> </div><!-- .nav-links --> </nav><!-- #comment-nav-below --> <?php endif; // Check for comment navigation. 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="vt-no-comments"><?php esc_html_e( 'Comments are closed.', 'kroth' ); ?></p> <?php endif; ?> </div><!-- .comments-section --> <?php /* ============================================== Comment Forms =============================================== */ if ( comments_open() ) { ?> <div id="respond" class="krth-comment-form comment-respond"> <?php $post_comment_text = cs_get_option('post_comment_text'); $post_comment_text = $post_comment_text ? $post_comment_text : __( 'Post Comment', 'kroth' ); $fields = array( 'author' => '<div class="krth-form-inputs no-padding-left"><input type="text" id="author" name="author" value="' . esc_attr( $commenter['comment_author'] ) . '" tabindex="1" placeholder="' . __( 'Name', 'kroth' ) . '"/>', 'email' => '<input type="text" id="email" name="email" value="' . esc_attr( $commenter['comment_author_email'] ) . '" tabindex="2" placeholder="' . __( 'Email', 'kroth' ) . '"/>', 'URL' => '<input type="text" id="url" name="url" value="' . esc_attr( $commenter['comment_author_url'] ) . '" tabindex="3" placeholder="' . __( 'Website', 'kroth' ) . '"/></div>', ); $defaults = array( 'comment_notes_before' => '', 'comment_notes_after' => '', 'fields' => apply_filters( 'comment_form_default_fields', $fields), 'id_form' => 'commentform', 'id_submit' => 'submit', 'title_reply' => __( 'Add Your Comment', 'kroth' ), 'title_reply_to' => __( 'Leave a Reply to %s', 'kroth' ), 'cancel_reply_link' => '<i class="icon-close"></i>'. '', 'label_submit' => $post_comment_text, 'comment_field' => '<div class="krth-form-textarea no-padding-right"><textarea id="comment" name="comment" tabindex="4" rows="3" cols="30" placeholder="' . __( 'Write your comment...', 'kroth' ) . '" ></textarea></div>' ); comment_form($defaults); ?> </div> <?php } ?> </div><!-- #comments --> <?php