# learnpress/4.4.0/templates/global/lp-modal-overlay.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.0. 28 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.0/code/templates/global/lp-modal-overlay.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.0/raw/templates/global/lp-modal-overlay.php
- Modified: 2026-06-17T11:04:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.0/code/templates/global/lp-modal-overlay.php#L10-L20`.

```php
<?php
/**
 * Template for displaying modal overlay.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/global/lp-modal-overlay.php.
 *
 * @author  tungnx
 * @package  Learnpress/Templates
 * @version  1.0.0
 */

?>

<div class="lp-modal-dialog">
	<div class="lp-modal-content">
		<div class="lp-modal-header">
			<h3 class="modal-title">Modal title</h3>
		</div>
		<div class="lp-modal-body">
			<div class="main-content">Main Content</div>
		</div>
		<div class="lp-modal-footer">
			<button type="button" class="lp-button btn-no"><?php esc_html_e( 'No' ); ?></button>
			<button type="button" class="lp-button btn-yes"><?php esc_html_e( 'Yes' ); ?></button>
		</div>
	</div>
</div>

```
