# master-addons/3.1.2/inc/admin/popup-builder/templates/editor.php

Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder &amp; Template Kits, version 3.1.2. 56 lines.

- Page: https://pluginprobe.com/plugins/master-addons/3.1.2/code/inc/admin/popup-builder/templates/editor.php
- Raw: https://pluginprobe.com/plugins/master-addons/3.1.2/raw/inc/admin/popup-builder/templates/editor.php
- Modified: 2026-03-08T11:32:50+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/master-addons/3.1.2/code/inc/admin/popup-builder/templates/editor.php#L10-L20`.

```php
<?php
/**
 * Master Addons Popup Editor Template
 *
 * @package MasterAddons
 * @subpackage PopupBuilder
 */

if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly.
}

// Elementor Instance
$elementor_plugin = \Elementor\Plugin::$instance;

?>

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo('charset'); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
    <?php if (!current_theme_supports('title-tag')) : ?>
        <title><?php echo esc_html(wp_get_document_title()); ?></title>
    <?php endif; ?>
    <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>

    <div class="jltma-template-popup">
        <div class="jltma-template-popup-inner">

            <!-- Popup Overlay & Close Button -->
            <div class="jltma-popup-overlay"></div>

            <!-- Template Container -->
            <div class="jltma-popup-container">

                <!-- Popup Close Button -->
                <div class="jltma-popup-close-btn"><i class="eicon-close"></i></div>

                <div class="jltma-popup-container-inner">
                    <?php $elementor_plugin->modules_manager->get_modules('page-templates')->print_content(); ?>
                </div>

            </div>

        </div>
    </div>

    <?php wp_footer(); ?>

</body>
</html>

```
