add-to-cart-edd.php
4 years ago
add-to-cart-woocommerce.php
4 years ago
course-author.php
4 years ago
course-continue.php
4 years ago
course-in-cart.php
4 years ago
course-price-edd.php
4 years ago
course-price-woocommerce.php
4 years ago
course-price.php
4 years ago
course.php
4 years ago
end_content_wrap.php
5 years ago
enrolled-course-progress.php
4 years ago
footer.php
4 years ago
header.php
4 years ago
loop-after-content.php
4 years ago
loop-before-content.php
4 years ago
loop-end.php
5 years ago
loop-start.php
4 years ago
meta.php
4 years ago
rating.php
4 years ago
start_content_wrap.php
4 years ago
thumbnail.php
4 years ago
title.php
4 years ago
tutor-pagination.php
4 years ago
tutor-pagination_ajax.php
4 years ago
footer.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package TutorLMS/Templates |
| 4 | * @version 1.4.3 |
| 5 | */ |
| 6 | global $wp_query; |
| 7 | $is_enrolled_page = false; |
| 8 | $query_vars = $wp_query->query_vars; |
| 9 | if ( isset( $query_vars[ 'tutor_dashboard_page' ] ) && 'enrolled-courses' === $query_vars['tutor_dashboard_page'] ) { |
| 10 | $is_enrolled_page = true; |
| 11 | } |
| 12 | ?> |
| 13 | |
| 14 | <div class="tutor-course-listing-item-footer <?php echo esc_attr( $is_enrolled_page ? 'no-border' : 'has-border' ); ?> tutor-py-16 tutor-px-20"> |
| 15 | <?php tutor_course_loop_price(); ?> |
| 16 | </div> |
| 17 |