enrolled
4 years ago
add-to-cart-edd.php
4 years ago
add-to-cart-woocommerce.php
4 years ago
continue-lesson.php
4 years ago
course-benefits.php
4 years ago
course-content.php
4 years ago
course-entry-box.php
4 years ago
course-requirements.php
4 years ago
course-target-audience.php
4 years ago
course-topics.php
4 years ago
instructors.php
3 years ago
lead-info.php
4 years ago
material-includes.php
4 years ago
q_and_a_turned_off.php
4 years ago
reviews-loop.php
4 years ago
reviews.php
4 years ago
social_share.php
4 years ago
tags.php
4 years ago
wc-price-html.php
4 years ago
reviews-loop.php
38 lines
| 1 | <?php foreach ( $reviews as $review ) : ?> |
| 2 | <?php $profile_url = tutor_utils()->profile_url( $review->user_id, false ); ?> |
| 3 | <div class="tutor-review-list-item tutor-card-list-item tutor-p-24 tutor-p-lg-40"> |
| 4 | <div class="tutor-row"> |
| 5 | <div class="tutor-col-lg-3 tutor-mb-16 tutor-mb-lg-0"> |
| 6 | <div class="tutor-mb-12"> |
| 7 | <?php echo tutor_utils()->get_tutor_avatar( $review->user_id, 'md' ); ?> |
| 8 | </div> |
| 9 | |
| 10 | <div class="tutor-reviewer-name tutor-fs-6 tutor-mb-4"> |
| 11 | <a href="<?php echo esc_url( $profile_url ); ?>" class="tutor-color-black"> |
| 12 | <?php echo esc_html( $review->display_name ); ?> |
| 13 | </a> |
| 14 | </div> |
| 15 | |
| 16 | <div class="tutor-reviewed-on tutor-fs-7 tutor-color-muted"> |
| 17 | <?php echo sprintf( __( '%s ago', 'tutor' ), human_time_diff( strtotime( $review->comment_date ) ) ); ?> |
| 18 | </div> |
| 19 | </div> |
| 20 | |
| 21 | <div class="tutor-col-lg-9"> |
| 22 | <?php if($review->comment_status=='hold') : ?> |
| 23 | <div style="position:absolute; right:15px"> |
| 24 | <span class="tutor-badge-label label-warning"> |
| 25 | <?php echo __('Pending', 'tutor'); ?> |
| 26 | </span> |
| 27 | </div> |
| 28 | <?php endif; ?> |
| 29 | |
| 30 | <?php tutor_utils()->star_rating_generator_v2( $review->rating, null, true, 'tutor-is-sm' ); ?> |
| 31 | |
| 32 | <div class="tutor-fs-7 tutor-color-secondary tutor-mt-12 tutor-review-comment"> |
| 33 | <?php echo htmlspecialchars( $review->comment_content ); ?> |
| 34 | </div> |
| 35 | </div> |
| 36 | </div> |
| 37 | </div> |
| 38 | <?php endforeach; ?> |