| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/test20.chuangfenglink.xyz/wp-content/themes/woodmart/ |
Upload File : |
<?php // phpcs:ignore phpcs: WordPress.Files.FileName.NotHyphenatedLowercase
/**
* The template for displaying custom popups.
*
* @package woodmart
*/
use Elementor\Plugin;
if ( ! current_user_can( apply_filters( 'woodmart_wd_popup_access', 'edit_posts' ) ) ) {
wp_die( 'You do not have access.', '', array( 'back_link' => true ) );
}
get_header();
?>
<?php if ( woodmart_is_elementor_installed() && ( woodmart_elementor_is_edit_mode() || woodmart_elementor_is_preview_page() || woodmart_elementor_is_preview_mode() ) ) : ?>
<?php
woodmart_enqueue_inline_style( 'mfp-popup' );
woodmart_enqueue_inline_style( 'opt-popup-builder' );
$document = Plugin::$instance->documents->get( get_the_ID() );
$page_settings = $document->get_settings();
$prefix = 'wd_popup_';
$wrapper_classes = 'wd-mfp-popup-wrap-' . get_the_ID();
$hide_on_desktop = ! empty( $page_settings[ $prefix . 'hide_popup' ] );
$hide_on_tablet = ! empty( $page_settings[ $prefix . 'hide_popup_tablet' ] );
$hide_on_mobile = ! empty( $page_settings[ $prefix . 'hide_popup_mobile' ] );
if ( $hide_on_desktop ) {
$wrapper_classes .= ' wd-hide-lg';
}
if ( $hide_on_tablet ) {
$wrapper_classes .= ' wd-hide-md-sm';
}
if ( $hide_on_mobile ) {
$wrapper_classes .= ' wd-hide-sm';
}
$btn_classes = 'wd-popup-close wd-action-btn wd-cross-icon';
if ( ! empty( $page_settings[ $prefix . 'close_btn_display' ] ) ) {
$btn_classes .= ' wd-style-' . $page_settings[ $prefix . 'close_btn_display' ];
} else {
$btn_classes .= ' wd-style-icon';
}
?>
<div class="mfp-bg mfp-ready wd-mfp-popup-bg-<?php echo esc_html( get_the_ID() ); ?> wd-fill"></div>
<div class="mfp-wrap wd-popup-builder-wrap wd-scroll <?php echo esc_html( $wrapper_classes ); ?>">
<div class="mfp-container mfp-s-ready mfp-inline-holder">
<div class="mfp-content">
<div class="wd-popup-wrap">
<?php if ( isset( $page_settings[ $prefix . 'close_btn' ] ) && $page_settings[ $prefix . 'close_btn' ] ) : ?>
<div class="<?php echo esc_attr( $btn_classes ); ?>">
<a title="<?php esc_html_e( 'Close', 'woodmart' ); ?>" href="#" rel="nofollow">
<span class="wd-action-icon"></span>
<span class="wd-action-text"><?php esc_html_e( 'Close', 'woodmart' ); ?></span>
</a>
</div>
<?php endif; ?>
<div class="wd-popup wd-scroll-content">
<div class="wd-popup-inner wd-entry-content">
<?php while ( have_posts() ) : ?>
<?php the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php else : ?>
<?php while ( have_posts() ) : ?>
<?php the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php
get_footer();