PluginProbe
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits / 3.1.2
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits v3.1.2
3.2.2 3.2.3 3.2.1 3.2.0 3.1.9 3.1.8 3.1.7 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.9 trunk 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.3 1.1.4 1.1.5 All 174 releases
master-addons / inc / admin / popup-builder / templates / editor.php

editor.php in Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits 3.1.2, at inc/admin/popup-builder/templates/editor.php

56 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Master Addons Popup Editor Template
4 *
5 * @package MasterAddons
6 * @subpackage PopupBuilder
7 */
8
9 if (!defined('ABSPATH')) {
10 exit; // Exit if accessed directly.
11 }
12
13 // Elementor Instance
14 $elementor_plugin = \Elementor\Plugin::$instance;
15
16 ?>
17
18 <!DOCTYPE html>
19 <html <?php language_attributes(); ?>>
20 <head>
21 <meta charset="<?php bloginfo('charset'); ?>">
22 <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
23 <?php if (!current_theme_supports('title-tag')) : ?>
24 <title><?php echo esc_html(wp_get_document_title()); ?></title>
25 <?php endif; ?>
26 <?php wp_head(); ?>
27 </head>
28
29 <body <?php body_class(); ?>>
30
31 <div class="jltma-template-popup">
32 <div class="jltma-template-popup-inner">
33
34 <!-- Popup Overlay & Close Button -->
35 <div class="jltma-popup-overlay"></div>
36
37 <!-- Template Container -->
38 <div class="jltma-popup-container">
39
40 <!-- Popup Close Button -->
41 <div class="jltma-popup-close-btn"><i class="eicon-close"></i></div>
42
43 <div class="jltma-popup-container-inner">
44 <?php $elementor_plugin->modules_manager->get_modules('page-templates')->print_content(); ?>
45 </div>
46
47 </div>
48
49 </div>
50 </div>
51
52 <?php wp_footer(); ?>
53
54 </body>
55 </html>
56