| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/royalopus.ae/wp-content/themes/wpresidence/page-templates/ |
Upload File : |
<?php
/** MILLDONE
* Template Name: Splash Page
* src: page-templates\splash_page.php
* This is the template for displaying the splash page in the WpResidence theme.
* It provides a minimal structure for a landing page with footer scripts and modals.
*
* @package WpResidence
* @subpackage Templates
* @since WpResidence 1.0
*/
// Check if WpResidence Core Plugin is active
if (!function_exists('wpestate_residence_functionality')) {
esc_html_e('This page will not work without WpResidence Core Plugin. Please activate it from the plugins menu!', 'wpresidence');
exit();
}
global $post;
get_header();
$wpestate_options = get_query_var('wpestate_options');
?>
</div><!-- end content_wrapper started in header -->
</div> <!-- end class container -->
<?php
wp_footer();
// Output the closing tags for the main wrapper
?>
</div> <!-- end website wrapper -->
<?php
// Include login/register modal
include(locate_template('templates/modals/login_register_modal.php'));
// Create and output nonce for AJAX login/register
$ajax_nonce_log_reg = wp_create_nonce("wpestate_ajax_log_reg");
?>
<input type="hidden" id="wpestate_ajax_log_reg" value="<?php echo esc_attr($ajax_nonce_log_reg); ?>" />
<?php
// Check if the header type is 'type3' and include the top bar sidebar if it is
$logo_header_type = wpresidence_get_option('wp_estate_logo_header_type', '');
if ($logo_header_type == 'type3') {
include(locate_template('templates/headers/top_bar_sidebar.php'));
}
?>
</body>
</html>