PluginProbe
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder / 51.1.78
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder v51.1.78
51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 51.1.46 51.1.47 51.1.49 All 37 releases
king-addons / includes / extensions / Popup_Builder / preview.php

preview.php in King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder 51.1.78, at includes/extensions/Popup_Builder/preview.php

37 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace King_Addons;
4
5 use Elementor\Plugin;
6
7 if (!defined('ABSPATH')) {
8 exit;
9 }
10
11 ?>
12 <!DOCTYPE html>
13 <html <?php language_attributes(); ?>>
14 <head>
15 <meta charset="<?php bloginfo('charset'); ?>">
16 <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"/>
17 <?php if (!current_theme_supports('title-tag')) : ?>
18 <title><?php echo esc_html(wp_get_document_title()); ?></title>
19 <?php endif; ?>
20 <?php wp_head(); ?>
21 </head>
22 <body <?php body_class(); ?>>
23 <div class="king-addons-pb-template-popup">
24 <div class="king-addons-pb-template-popup-inner">
25 <div class="king-addons-pb-popup-overlay"></div>
26 <div class="king-addons-pb-popup-container">
27 <div class="king-addons-pb-popup-close-btn"><i class="eicon-close"></i></div>
28 <div class="king-addons-pb-popup-container-inner">
29 <?php (Plugin::$instance)->modules_manager->get_modules('page-templates')->print_content(); ?>
30 </div>
31 </div>
32 </div>
33 </div>
34 <?php wp_footer(); ?>
35 </body>
36 </html>
37