File: /home/xedaptot/phuquocrentcar.com/wp-content/themes/traveler/reviews/review-list.php
<?php
/**
* @package WordPress
* @subpackage Traveler
* @since 1.0
*
* Review list
*
* Created by ShineTheme
*
*/
$comment=$GLOBALS['comment'];
/* override default avatar size */
$args['avatar_size'] = 70;
if ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type) :
//Do not allow pingback
?>
<?php else :
$comment_class='';
empty( $args['has_children'] ) ? '' :$comment_class.= 'parent';
if(!$comment->comment_approved){
return;
//$comment_class.=' need_aprove';
}
?>
<li id="comment-<?php comment_ID(); ?>" <?php comment_class( $comment_class ); ?>>
<div class="row">
<div class="col-md-2">
<div class="booking-item-review-person">
<a class="booking-item-review-person-avatar round" href="#">
<?php
$comment_id= get_comment_ID();
$user_id = get_comment($comment_id)->user_id;
$user_email = get_comment($comment_id)->comment_author_email;
$current_user = wp_get_current_user();
$custom_avatar = st_get_profile_avatar($user_id ,70);
if(!empty($custom_avatar)){
echo st_get_profile_avatar($user_id ,70);
}else{
echo st_get_profile_avatar_by_email( $user_email,70);
}
?>
</a>
<p class="booking-item-review-person-name">
<?php printf( __( '%s', 'traveler' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
</p>
<p class="booking-item-review-person-loc"><?php
$user_show_address = apply_filters('st_user_show_address' , false);
if ($user_show_address) echo get_user_meta($user_id,'st_address',true);
?>
</p>
<small>
<a href="#"><?php $review= STUser::count_review_by_email($user_email);
?>
<?php
if($review==0){
esc_html_e('0 Review','traveler');
}elseif($review==1) {
esc_html_e('1 Review','traveler');
}else{
printf(__('%d ', 'traveler').esc_html__('reviews','traveler'),$review);
}
?>
</a>
</small>
</div>
</div>
<div class="col-md-10">
<div class="booking-item-review-content">
<?php if($comment_title=get_comment_meta(get_comment_ID(),'comment_title',true)):
?>
<h5>"<?php echo balanceTags($comment_title) ?>"</h5>
<?php endif;?>
<?php if($comment_rate=get_comment_meta(get_comment_ID(),'comment_rate',true)):
?>
<ul class="icon-group booking-item-rating-stars" data-rate="<?php echo esc_attr($comment_rate) ?>">
<?php
if(!$comment_rate) $comment_rate=1;
echo TravelHelper::rate_to_string($comment_rate);
?>
</ul>
<?php endif;?>
<?php if ( '0' == $comment->comment_approved ) : ?>
<p class="alert alert-danger comment-awaiting-moderation"><?php esc_html_e('Your comment is awaiting moderation.','traveler'); ?></p>
<?php endif; ?>
<div class="comment-content">
<?php
$max_string=200;
$text=get_comment_text();
echo TravelHelper::add_read_more($text,$max_string);
?>
</div>
<div class="<?php /*if($max_string<strlen($text))*/ echo 'booking-item-review-more-content'?>">
<?php do_action('st_review_more_content',$comment_id)?>
<?php do_action('st_review_stats_'.get_post_type().'_content',$comment_id)?>
</div>
<?php //if($max_string<strlen($text)):?>
<div class="booking-item-review-expand"><span class="booking-item-review-expand-more"><?php esc_html_e('More','traveler')?> <i class="fa fa-angle-down"></i></span><span class="booking-item-review-expand-less"><?php st_the_language('Less')?> <i class="fa fa-angle-up"></i></span>
</div>
<?php //endif;?>
<p class="booking-item-review-rate"><?php esc_html_e('Was this review helpful?','traveler')?>
<?php
$count_like = get_comment_meta($comment_id,'_comment_like_count',true);
if(intval($count_like) <= 0) $count_like = 0;
?>
<b class="text-color"> <span class="number"><?php echo esc_html($count_like); ?></span> <?php echo __('like this', 'traveler'); ?></b>
<?php $review_obj=new STReview();
if($review_obj->check_like($comment_id)):
?>
<a data-id="<?php echo esc_attr($comment_id); ?>" class="st-like-review fa fa-thumbs-o-down box-icon-inline round" href="#"></a>
<?php
else:
?>
<a data-id="<?php echo esc_attr($comment_id); ?>" class="st-like-review fa fa-thumbs-o-up box-icon-inline round" href="#"></a></b>
<?php endif; ?>
</p>
</div>
</div>
<?php
endif;