Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/www/wp-content/themes/woodmart/inc/modules/layouts/admin/templates/ |
Upload File : |
<?php /** * Popup template. * * @package Woodmart * * @var string $btn_text Button text. * @var string $btn_classes Button classes. * @var string $title_text Title text. * @var string $content Content. */ $btn_classes = isset( $btn_classes ) ? $btn_classes : ''; wp_enqueue_style( 'wd-admin-page-layouts', WOODMART_ASSETS . '/css/parts/page-layouts.min.css', array(), WOODMART_VERSION ); ?> <div class="xts-popup-holder"> <div class="xts-popup-overlay"></div> <?php if ( $btn_text ) : ?> <a href="javascript:void(0);" class="xts-popup-opener xts-btn xts-color-primary<?php echo esc_attr( $btn_classes ); ?>"> <?php echo esc_html( $btn_text ); ?> </a> <?php endif; ?> <div class="xts-popup xts-theme-style"> <div class="xts-popup-inner"> <div class="xts-popup-header"> <div class="xts-popup-title"> <?php echo esc_html( $title_text ); ?> </div> <a href="javascript:void(0);" class="xts-popup-close xts-i-close"> <?php esc_html_e( 'Close', 'woodmart' ); ?> </a> </div> <div class="xts-popup-content"> <div class="xts-notices-wrapper xts-layout-popup-notices"></div> <?php echo $content; // phpcs:ignore ?> </div> </div> </div> </div>