whoami7 - Manager
:
/
home
/
qbizpnmr
/
public_html
/
wp-content
/
themes
/
essentials
/
Upload File:
files >> /home/qbizpnmr/public_html/wp-content/themes/essentials/404.php
<?php /** * The template for displaying 404 pages (not found) * * @link https://codex.wordpress.org/Creating_an_Error_404_Page * * @package pixfort theme */ get_header(); $classes = ''; $styles = ''; if (!empty(pix_get_option('pages-bg-color'))) { if (pix_get_option('pages-bg-color') == 'custom') { $styles = 'background:' . pix_get_option('custom-pages-bg-color') . ';'; } else { $classes = 'bg-' . pix_get_option('pages-bg-color') . ' '; } } $page = false; $pageID = false; $hide_top_area = false; $add_intro_placeholder = false; if (!empty(pix_get_option('pix-enable-custom-404')) && !empty(pix_get_option('pix-custom-404-page'))) { $page = pix_get_option('pix-custom-404-page'); if (function_exists('icl_get_languages')) { $correct_id = apply_filters('wpml_object_id', $page, 'page', true); $post = get_post($correct_id); } else { $post = get_post($page); } if ($post && !empty($post->ID)) { $pageID = $post->ID; if (get_post_meta($pageID, 'pix-hide-top-area', true)) { if (get_post_meta($pageID, 'pix-hide-top-area', true) === '1') { $hide_top_area = true; } } if (!get_post_meta($pageID, 'pix-hide-top-padding', true)) { $classes .= 'pt-5'; } } if (!$hide_top_area) get_template_part('template-parts/intro'); } else { $classes .= ' text-center pix-py-100'; if (empty(pix_get_option('pages-with-intro')) || !pix_get_option('pages-with-intro')) { $hide_top_area = true; $add_intro_placeholder = true; } if (!$hide_top_area) { if (pix_get_option('pix-header')) { $single_header = pix_get_option('pix-header'); if (!empty($single_header)) { $post = get_post($single_header); if (!empty(get_post_field('pix-header-style', $post))) { $header_style = get_post_field('pix-header-style', $post); if (!empty($header_style)) { if ( $header_style == 'boxed' || $header_style == 'boxed-full' || $header_style == 'transparent' || $header_style == 'transparent-full' ) { get_template_part('template-parts/intro'); } } } } } } } $containerClass = 'container'; if (class_exists('\Elementor\Plugin')) { if (Elementor\Plugin::instance()->documents->get(get_the_ID())) { if (Elementor\Plugin::instance()->documents->get(get_the_ID())->is_built_with_elementor()) { $containerClass = 'container-fluid px-0'; } } } ?> <div id="content" class="site-content <?php echo esc_attr($classes); ?> error-404 not-found" style="<?php echo esc_attr($styles); ?>"> <div class="<?php echo esc_attr($containerClass); ?>"> <div class="row"> <?php if ($add_intro_placeholder) { ?> <div class="pix-main-intro-placeholder"></div> <?php } if ($page) { ?> <div class="col-12 my-0 py-0"> <?php $wbp_page_default = true; if (class_exists('\Elementor\Plugin')) { if (Elementor\Plugin::instance()->documents->get($pageID)->is_built_with_elementor()) { $wbp_page_default = false; } } if (defined('WPB_VC_VERSION') && $wbp_page_default) { // WP Bakery if (is_user_logged_in()) { echo do_shortcode(get_post_field('post_content', $post)); } else { echo apply_filters('the_content', do_shortcode(get_post_field('post_content', $post))); } } else { // Elementor if (get_post_status($page)) { setup_postdata($page); the_content(); } } wp_reset_postdata(); $custom404Style = ''; if (!function_exists('vc_custom_css')) { function vc_custom_css($id) { $shortcodes_custom_css = get_post_meta($id, '_wpb_shortcodes_custom_css', true); if (!empty($shortcodes_custom_css)) { return esc_attr($shortcodes_custom_css); } } } if (defined('WPB_VC_VERSION')) { // WP Bakery $custom404Style .= vc_custom_css($pageID); } if (!empty($custom404Style)) { wp_register_style('pix-custom-404-handle', false); wp_enqueue_style('pix-custom-404-handle'); wp_add_inline_style('pix-custom-404-handle', $custom404Style); } ?> </div> <?php } else { ?> <header class="page-header w-100"> <div class="w-100"> <img src="<?php echo get_template_directory_uri() . '/inc/images/404.svg'; ?>" /> <?php if (function_exists('sc_sliding_text')) { echo sc_sliding_text([ 'position' => 'inherit', 'size' => 'h1', 'secondary_font' => 'secondary-font', 'el_class' => 'page-title2 h4 pix-mt-10 font-weight-bold', 'el_id' => 'pix-intro-sliding-text', 'remove_mb' => true ], esc_html('Oops! That page can’t be found.', 'essentials')); } else { ?> <h4 class="page-title2 pix-mt-10 font-weight-bold"><?php esc_html_e('Oops! That page can’t be found.', 'essentials'); ?></h4> <?php } ?> </div> </header><!-- .page-header --> <div class="page-content text-center w-100 pix-pt-20"> <?php if (function_exists('sc_pix_search')) { ?> <p><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'essentials'); ?></p> <?php echo sc_pix_search(array( 'max_width' => '600px' )); } ?> </div> <?php } ?> </div> </div> </div> <?php get_footer();
Copyright ©2021 || Defacer Indonesia