Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: reviews-loop.php
<div class="th-comments-wrap "> <ul class="comment-list"> <?php foreach ( $reviews as $review ) : ?> <?php $profile_url = tutor_utils()->profile_url( $review->user_id, false ); ?> <li class="review th-comment-item <?php echo human_time_diff( strtotime( $review->comment_date ) ); ?>"> <div class="th-post-comment"> <div class="comment-avater tutor-avatar tutor-avatar-xl"> <?php if( !empty($review->display_name) ){ echo wp_kses( tutor_utils()->get_tutor_avatar( $review->user_id, 'sm' ), tutor_utils()->allowed_avatar_tags() ); }else{ echo '<div class="tutor-ratio tutor-ratio-1x1"><span class="tutor-avatar-text">A</span></div>'; } ?> </div> <div class="comment-content"> <?php if( !empty($review->display_name) ){ ?> <h4 class="name"><?php echo esc_html( $review->display_name ); ?></h4> <?php }else{ ?> <h4 class="name"><?php echo esc_html__( 'Anonymous ', 'edura' ); ?></h4> <?php } ?> <span class="commented-on"><i class="fal fa-clock"></i><?php echo sprintf( __( '%s ago', 'edura' ), human_time_diff( strtotime( $review->comment_date ) ) ); ?></span> <?php tutor_utils()->star_rating_generator_v2( $review->rating, null, true ); ?> <?php echo htmlspecialchars( $review->comment_content ); ?> </div> </div> </li> <?php endforeach; ?> </ul> </div>