Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the video-embed-thumbnail-generator domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/divine/public_html/wp-includes/functions.php on line 6131
/** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ /** * Hestia functions and definitions * * @package Hestia * @since Hestia 1.0 */ define( 'HESTIA_VERSION', '3.3.3' ); define( 'HESTIA_VENDOR_VERSION', '1.0.2' ); define( 'HESTIA_PHP_INCLUDE', trailingslashit( get_template_directory() ) . 'inc/' ); define( 'HESTIA_ASSETS_URL', trailingslashit( get_template_directory_uri() ) . 'assets/' ); define( 'HESTIA_CORE_DIR', HESTIA_PHP_INCLUDE . 'core/' ); define( 'HESTIA_PRODUCT_SLUG', basename( trailingslashit( get_template_directory() ) ) ); if ( ! defined( 'HESTIA_DEBUG' ) ) { define( 'HESTIA_DEBUG', false ); } // Load hooks require_once( HESTIA_PHP_INCLUDE . 'hooks/hooks.php' ); // Load Helper Globally Scoped Functions require_once( HESTIA_PHP_INCLUDE . 'helpers/sanitize-functions.php' ); require_once( HESTIA_PHP_INCLUDE . 'helpers/layout-functions.php' ); if ( class_exists( 'WooCommerce', false ) ) { require_once( HESTIA_PHP_INCLUDE . 'compatibility/woocommerce/functions.php' ); } if ( function_exists( 'max_mega_menu_is_enabled' ) ) { require_once( HESTIA_PHP_INCLUDE . 'compatibility/max-mega-menu/functions.php' ); } // Load starter content require_once( HESTIA_PHP_INCLUDE . 'compatibility/class-hestia-starter-content.php' ); /** * Adds notice for PHP < 5.3.29 hosts. */ function hestia_no_support_5_3() { $message = __( 'Hey, we\'ve noticed that you\'re running an outdated version of PHP which is no longer supported. Make sure your site is fast and secure, by upgrading PHP to the latest version.', 'hestia' ); printf( '

%1$s

', esc_html( $message ) ); } if ( version_compare( PHP_VERSION, '5.3.29' ) < 0 ) { /** * Add notice for PHP upgrade. */ add_filter( 'template_include', '__return_null', 99 ); switch_theme( WP_DEFAULT_THEME ); unset( $_GET['activated'] ); add_action( 'admin_notices', 'hestia_no_support_5_3' ); return; } /** * Begins execution of the theme core. * * Since everything within the plugin is registered via hooks, * then kicking off the plugin from this point in the file does * not affect the page life cycle. * * @since 1.0.0 */ function hestia_run() { $vendor_file = trailingslashit( get_template_directory() ) . 'vendor/composer/autoload_files.php'; if ( is_readable( $vendor_file ) ) { $files = require_once $vendor_file; foreach ( $files as $file ) { if ( is_readable( $file ) ) { include_once $file; } } } add_filter( 'themeisle_sdk_products', 'hestia_load_sdk' ); add_filter( 'themesle_sdk_namespace_' . md5( get_template_directory() . '/style.css' ), function () { return 'hestia'; } ); add_filter( 'hestia_pro_hide_license_field', '__return_true' ); add_filter( 'hestia_pro_lc_no_valid_string', function ( $message ) { $license_page = add_query_arg( array( 'page' => 'hestia-welcome' ), 'admin.php' ); return str_replace( '', '', $message ); } ); if ( class_exists( 'Ti_White_Label', false ) ) { Ti_White_Label::instance( get_template_directory() . '/style.css' ); } require_once HESTIA_CORE_DIR . 'class-hestia-autoloader.php'; $autoloader = new Hestia_Autoloader(); spl_autoload_register( array( $autoloader, 'loader' ) ); new Hestia_Core(); } /** * Loads products array. * * @param array $products All products. * * @return array Products array. */ function hestia_load_sdk( $products ) { $products[] = get_template_directory() . '/style.css'; return $products; } require_once( HESTIA_CORE_DIR . 'class-hestia-autoloader.php' ); /** * The start of the app. * * @since 1.0.0 */ hestia_run(); /** * Append theme name to the upgrade link * If the active theme is child theme of Hestia * * @param string $link - Current link. * * @return string $link - New upgrade link. * @package hestia * @since 1.1.75 */ function hestia_upgrade_link( $link ) { $theme_name = wp_get_theme()->get_stylesheet(); $hestia_child_themes = array( 'orfeo', 'fagri', 'tiny-hestia', 'christmas-hestia', 'jinsy-magazine', ); if ( $theme_name === 'hestia' ) { return $link; } if ( ! in_array( $theme_name, $hestia_child_themes, true ) ) { return $link; } $link = add_query_arg( array( 'theme' => $theme_name, ), $link ); return $link; } add_filter( 'hestia_upgrade_link_from_child_theme_filter', 'hestia_upgrade_link' ); /** * Check if $no_seconds have passed since theme was activated. * Used to perform certain actions, like displaying upsells or add a new recommended action in About Hestia page. * * @param integer $no_seconds number of seconds. * * @return bool * @since 1.1.45 * @access public */ function hestia_check_passed_time( $no_seconds ) { $activation_time = get_option( 'hestia_time_activated' ); if ( ! empty( $activation_time ) ) { $current_time = time(); $time_difference = (int) $no_seconds; if ( $current_time >= $activation_time + $time_difference ) { return true; } else { return false; } } return true; } /** * Legacy code function. */ function hestia_setup_theme() { return; } /** * Minimize CSS. * * @param string $css Inline CSS. * @return string */ function hestia_minimize_css( $css ) { if ( empty( $css ) ) { return $css; } // Normalize whitespace. $css = preg_replace( '/\s+/', ' ', $css ); // Remove spaces before and after comment. $css = preg_replace( '/(\s+)(\/\*(.*?)\*\/)(\s+)/', '$2', $css ); // Remove comment blocks, everything between /* and */, unless. // preserved with /*! ... */ or /** ... */. $css = preg_replace( '~/\*(?![\!|\*])(.*?)\*/~', '', $css ); // Remove ; before }. $css = preg_replace( '/;(?=\s*})/', '', $css ); // Remove space after , : ; { } */ >. $css = preg_replace( '/(,|:|;|\{|}|\*\/|>) /', '$1', $css ); // Remove space before , ; { } ( ) >. $css = preg_replace( '/ (,|;|\{|}|\(|\)|>)/', '$1', $css ); // Strips leading 0 on decimal values (converts 0.5px into .5px). $css = preg_replace( '/(:| )0\.([0-9]+)(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}.${2}${3}', $css ); // Strips units if value is 0 (converts 0px to 0). $css = preg_replace( '/(:| )(\.?)0(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}0', $css ); // Converts all zeros value into short-hand. $css = preg_replace( '/0 0 0 0/', '0', $css ); // Shortern 6-character hex color codes to 3-character where possible. $css = preg_replace( '/#([a-f0-9])\\1([a-f0-9])\\2([a-f0-9])\\3/i', '#\1\2\3', $css ); return trim( $css ); }

Fatal error: Uncaught Error: Call to undefined function hestia_before_header_trigger() in /home/divine/public_html/wp-content/themes/hestia/header.php:48 Stack trace: #0 /home/divine/public_html/wp-includes/template.php(814): require_once() #1 /home/divine/public_html/wp-includes/template.php(749): load_template('/home/divine/pu...', true, Array) #2 /home/divine/public_html/wp-includes/general-template.php(48): locate_template(Array, true, true, Array) #3 /home/divine/public_html/wp-content/themes/hestia/front-page.php(16): get_header() #4 /home/divine/public_html/wp-includes/template-loader.php(132): include('/home/divine/pu...') #5 /home/divine/public_html/wp-blog-header.php(19): require_once('/home/divine/pu...') #6 /home/divine/public_html/index.php(17): require('/home/divine/pu...') #7 {main} thrown in /home/divine/public_html/wp-content/themes/hestia/header.php on line 48