enrolled
5 years ago
add-to-cart-edd.php
5 years ago
add-to-cart-woocommerce.php
5 years ago
add-to-cart.php
5 years ago
closed-enrollment.php
5 years ago
complete_form.php
5 years ago
continue-lesson.php
5 years ago
course-benefits.php
5 years ago
course-content.php
5 years ago
course-enroll-box.php
5 years ago
course-enrolled-box.php
5 years ago
course-requirements.php
5 years ago
course-target-audience.php
5 years ago
course-topics.php
5 years ago
instructors.php
5 years ago
lead-info.php
5 years ago
login.php
5 years ago
material-includes.php
5 years ago
q_and_a_turned_off.php
5 years ago
review-form.php
5 years ago
reviews.php
5 years ago
social_share.php
5 years ago
tags.php
5 years ago
wc-price-html.php
5 years ago
closed-enrollment.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Closed for Enrollment |
| 5 | * |
| 6 | * @since v.1.6.4 |
| 7 | * @author themeum |
| 8 | * @url https://themeum.com |
| 9 | * |
| 10 | * @package TutorLMS/Templates |
| 11 | */ |
| 12 | |
| 13 | if (!defined('ABSPATH')) |
| 14 | exit; |
| 15 | |
| 16 | do_action('tutor_course/single/closed-enrollment/before'); |
| 17 | ?> |
| 18 | |
| 19 | <div class="tutor-single-add-to-cart-box"> |
| 20 | <div class="tutor-course-enroll-wrap"> |
| 21 | <button type="button" class="tutor-button tutor-button-block" disabled="disabled"> |
| 22 | <span><?php _e('100% Booked', 'tutor'); ?></span> |
| 23 | <?php _e('Closed for Enrollment', 'tutor'); ?> |
| 24 | </button> |
| 25 | </div> |
| 26 | </div> |
| 27 | |
| 28 | <?php do_action('tutor_course/single/closed-enrollment/after'); ?> |