parts
2 years ago
body.php
3 years ago
content.php
3 years ago
no_course_belongs.php
3 years ago
previous-attempts.php
3 years ago
single_quiz_contents.php
3 years ago
top.php
3 years ago
no_course_belongs.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * No course found template |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Single\Quiz |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 1.4.3 |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | |
| 14 | <div class="tutor-alert-warning"> |
| 15 | <h2><?php esc_html_e( 'No course found for this quiz', 'tutor' ); ?></h2> |
| 16 | <p><?php esc_html_e( 'It seems there is no course belongs with this quiz, you can not attempt on this quiz without a course belongs, please notify to your instructor to fix this issue.', 'tutor' ); ?></p> |
| 17 | </div> |
| 18 |