HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpicare/wp-content/updraft/plugins-old/jeg-elementor-kit/templates/404-template.php
<?php

$notfound_template = get_option( 'jkit_notfound_template' );

if ( jkit_is_multilanguage() ) {
	$notfound_template = jkit_get_multilanguage_post_id( $notfound_template );
}

$page_template = get_page_template_slug( $notfound_template );

if ( 'elementor_canvas' === $page_template ) {
	?>
	<!doctype html>
	<html <?php language_attributes(); ?>>
		<head>
			<meta charset="<?php bloginfo( 'charset' ); ?>">
			<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
			<link rel="profile" href="https://gmpg.org/xfn/11">
			<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
			<?php wp_head(); ?>
		</head>
		<body <?php body_class(); ?>>
			<?php wp_body_open(); ?>
			<div id="page" class="jkit-template <?php echo esc_attr( get_jkit_template_classes( '404' ) ); ?> find-404 site">
				<?php echo \Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $notfound_template, true ); ?>
			</div>
			<?php wp_footer(); ?>
		</body>
	</html>
	<?php
} else {
	ob_start();
	get_header();
	/** Handled by Elementor self */
	echo \Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $notfound_template, true );
	get_footer();

	echo ob_get_clean();
}