X7ROOT File Manager
Current Path:
/home/hamdjcne/public_html/wp-content/themes/hub
home
/
hamdjcne
/
public_html
/
wp-content
/
themes
/
hub
/
ðŸ“
..
📄
404.php
(2.89 KB)
📄
README.md
(565 B)
📄
ajaxify.php
(153 B)
📄
apple-touch-icon.png
(650 B)
📄
archive-liquid-portfolio.php
(740 B)
📄
archive.php
(764 B)
ðŸ“
assets
📄
author.php
(726 B)
ðŸ“
bbpress
📄
category.php
(741 B)
📄
comments.php
(2.85 KB)
📄
favicon.ico
(7.23 KB)
📄
favicon.png
(471 B)
📄
footer.php
(478 B)
📄
functions.php
(2.07 KB)
📄
header.php
(1.04 KB)
📄
index.php
(286 B)
ðŸ“
languages
ðŸ“
liquid
📄
page.php
(387 B)
ðŸ“
sbi
📄
screenshot.png
(30.11 KB)
📄
search.php
(361 B)
📄
sidebar.php
(91 B)
📄
single-liquid-footer.php
(202 B)
📄
single-liquid-header.php
(405 B)
📄
single-liquid-portfolio.php
(1.05 KB)
📄
single.php
(1.84 KB)
📄
style.css
(3.57 KB)
📄
tag.php
(737 B)
📄
taxonomy-liquid-portfolio-category.php
(749 B)
ðŸ“
templates
ðŸ“
theme
ðŸ“
woocommerce
📄
wpml-config.xml
(26.52 KB)
Editing: comments.php
<?php /** * The template for displaying comments * * The area of the page that contains both current comments * and the comment form. * * @package Hub */ // 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 clearfix mt-6"> <?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" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" placeholder="' . esc_attr__( 'Name', 'hub' ) . ( $req ? '*' : '' ) . '" 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" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" placeholder="' . esc_attr__( 'Email', 'hub' ) . ( $req ? '*' : '' ) . '" 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" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" placeholder="' . esc_attr__( 'Website', 'hub' ) . '" size="30" maxlength="200" /></p></div>', ); ?> <?php comment_form( array( 'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title mt-0">', 'title_reply' => esc_html__( 'Leave a comment', 'hub' ), 'title_reply_after' => '</h3>', 'fields' => $fields, 'comment_field' => '<div class="col-sm-12"><p class="comment-form-comment"><textarea id="comment" name="comment" rows="6" placeholder="'. esc_attr__( 'Comment', 'hub' ) .'" required="required"></textarea></p></div>', 'comment_notes_before' => '', 'label_submit' => esc_attr__( 'Submit', 'hub' ), 'submit_field' => '<div class="col-sm-12"><p class="form-submit">%1$s %2$s</p></div>', ) ); ?> <?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.', 'hub' ); ?></p> <?php endif; ?> </div>
Upload File
Create Folder