| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying block lesson content. |
| 4 |
* |
| 5 |
* This template can be overridden by copying it to yourtheme/learnpress/content-lesson/block-content.php. |
| 6 |
* |
| 7 |
* @author ThimPress |
| 8 |
* @package Learnpress/Templates |
| 9 |
* @version 4.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
defined( 'ABSPATH' ) || exit(); |
| 13 |
?> |
| 14 |
|
| 15 |
<div class="learn-press-content-protected-message content-item-block"> |
| 16 |
<?php esc_html_e( 'The content of this item has been blocked because the course has exceeded its duration.', 'learnpress' ); ?> |
| 17 |
</div> |
| 18 |
|