HEX
Server: LiteSpeed
System: Linux srv271.doctorhoster.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: lcipakco (2751)
PHP: 8.3.32
Disabled: show_source, system, shell_exec, passthru, exec, popen, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, escapeshellcmd, apache_child_terminate, virtual, mb_send_mail, mail, eval, phpinfo
Upload Files
File: /mnt/home/lcipakco/public_html/wp-content/themes/convis/404.php
<?php
/**
 * The template for displaying 404 pages (not found)
 *
 * @link https://codex.wordpress.org/Creating_an_Error_404_Page
 *
 * @package Convis
 */

use ConvisTheme\Classes\Convis_Helper as Helper;

get_header();

$error_title   = Helper::get_option( 'error_title', __( 'Oops! Nothing Was Found', 'convis' ) );
$error_message = Helper::get_option( 'error_message', __( 'Sorry! page did not found. The page you are looking for does not exist or has been moved', 'convis' ) );
$button_text   = Helper::get_option( 'error_button_text', __( 'Go to Home', 'convis' ) );
$error_img     = Helper::get_option( 'error_img', [ 'url' => CONVIS_ASSETS . '/img/404-illustration.png' ] );

?>
    <div class="container">
        <div class="error-content-area">
            <div class="error-content">
				<?php if ( $error_title ): ?>
                    <h2 class="error-title"><?php echo esc_html( $error_title ) ?></h2>
				<?php endif; ?>
				<?php if ( $error_message ): ?>
                    <p class="error-message"><?php echo esc_html( $error_message ) ?></p>
				<?php endif; ?>
                <a class="convis-button icon-right hover-left-right" href="<?php echo esc_url( home_url( '/' ) ) ?>">
                    <span class="button-text"><?php echo esc_html( $button_text ) ?></span>
                    <span class="button-icon"><i class="far fa-arrow-right"></i></span>
                </a>
            </div>
            <div class="error-illustration">
                <img src="<?php echo esc_url( $error_img[ 'url' ] ) ?>">
            </div>
        </div>
    </div>
<?php
get_footer();