tools
3 years ago
add_new_instructor.php
2 years ago
addons.php
3 years ago
announcements.php
3 years ago
answer.php
3 years ago
course-bundle.php
2 years ago
course-list.php
2 years ago
enable_disable_addons.php
3 years ago
get-pro.php
2 years ago
instructors.php
2 years ago
question_answer.php
3 years ago
quiz_attempts.php
3 years ago
students.php
3 years ago
tools.php
3 years ago
tutor-pro-addons.php
2 years ago
uninstall.php
3 years ago
view_attempt.php
3 years ago
welcome.php
2 years ago
whats-new.php
2 years ago
withdraw_requests.php
2 years ago
course-bundle.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Course Bundle Page For Free User. |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 2.2.0 |
| 9 | */ |
| 10 | |
| 11 | ?> |
| 12 | |
| 13 | <div class="tutor-course-bundle-wrapper"> |
| 14 | <div class="tutor-course-bundle-content"> |
| 15 | <img src="https://www.themeum.com/wp-content/uploads/2023/10/course-bundle-banner.png" alt="course bundle banner"> |
| 16 | </div> |
| 17 | <div class="tutor-course-bundle-footer"> |
| 18 | <div class="tutor-course-bundle-footer-content"> |
| 19 | <h2><?php esc_html_e( 'Boost your course sale with bundle!', 'tutor' ); ?></h2> |
| 20 | <p class="tutor-mt-12 tutor-color-muted"><?php esc_html_e( 'Create course bundles to sell multiple courses together. Offer a course package for a complete eLearning experience for your students and boost sales!', 'tutor' ); ?></p> |
| 21 | <a class="tutor-course-bundle-btn" target="_blank" href="https://www.themeum.com/tutor-lms/pricing?utm_source=get_pro&utm_medium=wordpress_dashboard&utm_campaign=course_bundle#comparison"> |
| 22 | <?php esc_html_e( 'Compare Free vs Pro', 'tutor' ); ?> |
| 23 | </a> |
| 24 | </div> |
| 25 | </div> |
| 26 | </div> |
| 27 |