add-to-cart-edd.php
7 years ago
add-to-cart-woocommerce.php
7 years ago
course-author.php
7 years ago
course-price-edd.php
7 years ago
course-price-woocommerce.php
7 years ago
course-price.php
7 years ago
course.php
7 years ago
end_content_wrap.php
7 years ago
footer.php
7 years ago
header.php
7 years ago
loop-after-content.php
7 years ago
loop-before-content.php
7 years ago
loop-end.php
7 years ago
loop-start.php
7 years ago
meta.php
7 years ago
rating.php
7 years ago
start_content_wrap.php
7 years ago
thumbnail.php
7 years ago
title.php
7 years ago
tutor-pagination.php
7 years ago
footer.php
11 lines
| 1 | <div class="tutor-loop-course-footer"> |
| 2 | <?php |
| 3 | $course_duration = get_tutor_course_duration_context(); |
| 4 | $course_students = tutor_utils()->count_enrolled_users_by_course(); |
| 5 | |
| 6 | if(!empty($course_duration)) echo "<i class='tutor-icon-clock'></i> <span>$course_duration</span>"; |
| 7 | echo "<i class='tutor-icon-user'></i> <span>$course_students</span>"; |
| 8 | tutor_course_loop_price(); |
| 9 | ?> |
| 10 | </div> |
| 11 |