X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/themes/rife-free/advance
home
/
oakwood
/
public_html
/
wp-content
/
themes
/
rife-free
/
advance
/
ðŸ“
..
ðŸ“
admin
📄
class-apollo13-framework.php
(44.31 KB)
📄
compatibility.php
(3.19 KB)
📄
cpt-admin.php
(3.42 KB)
📄
customizer.php
(18.69 KB)
📄
elementor-pro.php
(418 B)
📄
head-scripts-styles.php
(23.32 KB)
ðŸ“
inc
📄
index.html
(34 B)
📄
meta.php
(73.64 KB)
ðŸ“
plugins
📄
rife.php
(5.87 KB)
📄
rife_uni.php
(885 B)
📄
sidebars.php
(3.93 KB)
📄
theme-options.php
(202.69 KB)
📄
user-css.php
(89.54 KB)
ðŸ“
utilities
📄
vc-extend.php
(3.77 KB)
ðŸ“
walkers
Editing: head-scripts-styles.php
<?php /* Functions for registering and printing scripts & styles */ add_action( 'wp_enqueue_scripts', 'apollo13framework_theme_scripts', 26 ); //put it later then woocommerce if(!function_exists('apollo13framework_theme_scripts')){ /** * Registering frontend theme scripts */ function apollo13framework_theme_scripts(){ global $apollo13framework_a13; static $printed = false; if($printed){ //second call of this functions return; } $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; $page_type = apollo13framework_what_page_type_is_it(); $album = $page_type['album']; $work = $page_type['work']; /* We add some JavaScript to pages with the comment form * to support sites with threaded comments (when in use). */ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ){ wp_enqueue_script( 'comment-reply' ); } $script_depends = array( 'apollo13framework-plugins' ); //fitvids script wp_register_script('jquery-fitvids', get_theme_file_uri( 'js/jquery.fitvids.min.js' ), array('jquery'), '1.1', true); $script_depends[] = 'jquery-fitvids'; //fittext script wp_register_script('jquery-fittext', get_theme_file_uri( 'js/jquery.fittext.min.js' ), array('jquery'), '1.2', true); $script_depends[] = 'jquery-fittext'; //waypoints script - used in writing effect for example wp_register_script('noframework-waypoints', get_theme_file_uri( 'js/noframework.waypoints.min.js' ), false, '4.0.1', true); //plugins used in theme (cheat sheet) wp_register_script('apollo13framework-plugins', get_theme_file_uri( 'js/helpers.min.js' ), false, //depends A13FRAMEWORK_THEME_VERSION, //version number true //in footer ); //flickity wp_register_script( 'flickity', get_theme_file_uri( 'js/flickity.pkgd.min.js' ), array('jquery'), '2.0.9', true); //slidesjs wp_register_script( 'jquery-slides', get_theme_file_uri( 'js/jquery.slides.min.js' ), array('jquery'), '3.0.4', true); $script_depends[] = 'jquery-slides'; //sticky kit wp_register_script( 'jquery-sticky-kit', get_theme_file_uri( 'js/jquery.sticky-kit.min.js' ), array('jquery'), '1.1.2', true); $script_depends[] = 'jquery-sticky-kit'; //mouse scroll support wp_register_script( 'jquery-mousewheel', get_theme_file_uri( 'js/jquery.mousewheel.min.js' ), array('jquery'), '3.1.13', true); $script_depends[] = 'jquery-mousewheel'; //writting effect support wp_register_script( 'jquery-typed', get_theme_file_uri( 'js/typed.min.js' ), array('jquery'), '1.1.4', true); $script_depends[] = 'jquery-typed'; //counter - for counter shortcode wp_register_script( 'jquery-countto', get_theme_file_uri( 'js/jquery.countTo.js' ), array('jquery'), '1.0', true); //countdown wp_register_script( 'jquery-countdown', get_theme_file_uri( 'js/jquery.countdown.min.js' ), array('jquery'), '2.2.0', true); //lightGallery lightbox wp_register_script( 'jquery-lightgallery', get_theme_file_uri( 'js/light-gallery/js/lightgallery-all.min.js' ), array('jquery'), '1.9.0', true); //modified isotope for bricks layouts wp_register_script( 'apollo13framework-isotope', get_theme_file_uri( 'js/isotope.pkgd.min.js' ), array('jquery'), '3.0.6', true); $script_depends[] = 'apollo13framework-isotope'; //slider needed $how_to_open = $apollo13framework_a13->get_option( 'works_list_work_how_to_open' ); if ( //album or work slider ( ( $album || $work ) && $apollo13framework_a13->get_meta( '_theme' ) === 'slider' ) //we need slider script in case of VC post grid || ( defined( 'WPB_VC_VERSION' ) && $how_to_open === 'in-lightbox' ) ) { $script_depends[] = 'apollo13framework-slider'; } //flickity needed $flickity_themes = array('scroller', 'scroller-parallax'); if( ( $album || $work ) && in_array($apollo13framework_a13->get_meta( '_theme' ), $flickity_themes)){ $script_depends[] = 'flickity'; } //A13 STICKY ONE PAGE wp_register_script( 'jquery-slimscroll', get_theme_file_uri( 'js/jquery.slimscroll.min.js' ), array('jquery','apollo13framework-plugins'), '1.3.2', true); wp_register_script( 'fullPage', get_theme_file_uri( 'js/jquery.fullPage.min.js' ), array('jquery','jquery-slimscroll'), '2.7.6', true); if( $apollo13framework_a13->get_meta( '_content_sticky_one_page' ) === 'on' ){ $script_depends[] = 'fullPage'; } //Image carousel wp_register_script( 'jquery-owl-carousel', get_theme_file_uri( 'js/owl.carousel.min.js' ), array('jquery','apollo13framework-plugins'), '2.2.1', true); //bricks videos if( ($album || $work) && $apollo13framework_a13->get_meta('_theme') === 'bricks'){ $script_depends[] = 'mediaelement'; } //lightbox $lightbox = $apollo13framework_a13->get_option( 'apollo_lightbox' ); if( $lightbox === 'lightGallery' ){ $script_depends[] = 'jquery-lightgallery'; } //options passed to JS $apollo_params = apollo13framework_js_parameters(); //hand written scripts for theme wp_enqueue_script('apollo13framework-scripts', get_theme_file_uri( 'js/script' . $suffix . '.js' ), $script_depends, A13FRAMEWORK_THEME_VERSION, true ); //transfer options wp_localize_script( 'apollo13framework-plugins', 'ApolloParams', $apollo_params ); if( defined( 'WPB_VC_VERSION' ) && version_compare( WPB_VC_VERSION, '6.0', '>=') ){ wp_enqueue_script('vc_waypoints'); } $printed = true; //probably since WordPress 4.9.9 this will be possible https://wordpress.stackexchange.com/a/311279 //$script = <<<NOJSSCRIPT //(function(){ // var docElement = document.documentElement, // className = docElement.className; // // Change `no-js` to `js` // var reJS = new RegExp('(^|\\s)no-js(\\s|$)'); // className = className.replace(reJS, '$1js$2'); // docElement.className = className; //})() //NOJSSCRIPT; //wp_enqueue_script( 'a13-no-js', false ); //wp_add_inline_script( 'a13-no-js', $script ); } } if(!function_exists('apollo13framework_js_parameters')){ /** * Special parameters passed to JavaScript vie Global variable * @return array of all parameters */ function apollo13framework_js_parameters(){ global $apollo13framework_a13; $allow_mobile_menu = $apollo13framework_a13->get_option( 'header_type' ) === 'vertical' || ($apollo13framework_a13->get_option( 'header_main_menu' ) === 'on' && $apollo13framework_a13->get_option( 'menu_allow_mobile_menu' ) !== 'off'); $params = array( /* GLOBAL OPTIONS */ 'ajaxurl' => admin_url('admin-ajax.php'), 'site_url' => site_url().'/', 'defimgurl' => get_theme_file_uri( 'images/holders/photo.png'), 'options_name' => A13FRAMEWORK_OPTIONS_NAME, /* MISC */ 'load_more' => esc_html__( 'Load more', 'rife-free' ), 'loading_items' => esc_html__( 'Loading next items', 'rife-free' ), 'anchors_in_bar' => $apollo13framework_a13->get_option( 'anchors_in_bar' ) === 'on', 'scroll_to_anchor' => $apollo13framework_a13->get_option( 'scroll_to_anchor' ) === 'on', 'writing_effect_mobile' => $apollo13framework_a13->get_option( 'writing_effect_mobile' ) === 'on', 'writing_effect_speed' => $apollo13framework_a13->get_option( 'writing_effect_speed', 10 ), /* HORIZONTAL HEADER */ 'hide_content_under_header' => apollo13framework_content_under_header(), 'default_header_variant' => apollo13framework_horizontal_header_color_variant(), 'header_sticky_top_bar' => $apollo13framework_a13->get_option( 'header_sticky_top_bar' ) === 'on', 'header_color_variants' => $apollo13framework_a13->get_option( 'header_color_variants' ), 'show_header_at' => $apollo13framework_a13->get_meta('_horizontal_header_show_header_at' ), /* HORIZONTAL HEADER VARIANTS */ 'header_normal_social_colors' => $apollo13framework_a13->get_option( 'header_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_socials_color_hover' ).'_hover'. '|'.$apollo13framework_a13->get_option( 'top_bar_socials_color' ). '|'.$apollo13framework_a13->get_option( 'top_bar_socials_color_hover' ).'_hover', 'header_light_social_colors' => $apollo13framework_a13->get_option( 'header_light_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_light_socials_color_hover' ).'_hover'. '|'.$apollo13framework_a13->get_option( 'header_light_top_bar_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_light_top_bar_socials_color_hover' ).'_hover', 'header_dark_social_colors' => $apollo13framework_a13->get_option( 'header_dark_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_dark_socials_color_hover' ).'_hover'. '|'.$apollo13framework_a13->get_option( 'header_dark_top_bar_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_dark_top_bar_socials_color_hover' ).'_hover', 'header_sticky_social_colors' => $apollo13framework_a13->get_option( 'header_sticky_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_sticky_socials_color_hover' ).'_hover'. '|'.$apollo13framework_a13->get_option( 'header_sticky_top_bar_socials_color' ). '|'.$apollo13framework_a13->get_option( 'header_sticky_top_bar_socials_color_hover' ).'_hover', /* MENU */ 'close_mobile_menu_on_click' => $apollo13framework_a13->get_option( 'menu_close_mobile_menu_on_click' ) === 'on', 'menu_overlay_on_click' => $apollo13framework_a13->get_option( 'header_menu_overlay_on_click', 'off' ) === 'on', 'allow_mobile_menu' => $allow_mobile_menu, 'submenu_opener' => 'fa-' . $apollo13framework_a13->get_option( 'submenu_opener' ), 'submenu_closer' => 'fa-' . $apollo13framework_a13->get_option( 'submenu_closer' ), 'submenu_third_lvl_opener' => 'fa-' . $apollo13framework_a13->get_option( 'submenu_third_lvl_opener' ), 'submenu_third_lvl_closer' => 'fa-' . $apollo13framework_a13->get_option( 'submenu_third_lvl_closer' ), /* BLOG */ 'posts_layout_mode' => $apollo13framework_a13->get_option( 'blog_layout_mode' ), /* SHOP */ 'products_brick_margin' => $apollo13framework_a13->get_option( 'shop_brick_margin' ), 'products_layout_mode' => $apollo13framework_a13->get_option( 'shop_products_layout_mode' ), /* ALBUMS */ 'albums_list_layout_mode' => $apollo13framework_a13->get_option( 'albums_list_layout_mode' ), 'album_bricks_thumb_video' => $apollo13framework_a13->get_option( 'album_bricks_thumb_video' ) === 'on', /* WORKS */ 'works_list_layout_mode' => $apollo13framework_a13->get_option( 'works_list_layout_mode' ), 'work_bricks_thumb_video' => $apollo13framework_a13->get_option( 'work_bricks_thumb_video' ) === 'on', /* PEOPLE */ 'people_list_layout_mode' => 'fitRows',//this can cause issues on 0 margin between bricks /* lightGallery lightbox */ 'lg_lightbox_share' => $apollo13framework_a13->get_option( 'lg_lightbox_share', 'on' ) === 'on', 'lg_lightbox_controls' => $apollo13framework_a13->get_option( 'lg_lightbox_controls', 'on' ) === 'on', 'lg_lightbox_download' => $apollo13framework_a13->get_option( 'lg_lightbox_download', 'off' ) === 'on', 'lg_lightbox_counter' => $apollo13framework_a13->get_option( 'lg_lightbox_counter', 'on' ) === 'on', 'lg_lightbox_thumbnail' => $apollo13framework_a13->get_option( 'lg_lightbox_thumbnail', 'on' ) === 'on', 'lg_lightbox_show_thumbs' => $apollo13framework_a13->get_option( 'lg_lightbox_show_thumbs', 'off' ) === 'on', 'lg_lightbox_autoplay' => $apollo13framework_a13->get_option( 'lg_lightbox_autoplay', 'on' ) === 'on', 'lg_lightbox_autoplay_open' => $apollo13framework_a13->get_option( 'lg_lightbox_autoplay_open', 'off' ) === 'on', 'lg_lightbox_progressbar' => $apollo13framework_a13->get_option( 'lg_lightbox_progressbar', 'on' ) === 'on', 'lg_lightbox_full_screen' => $apollo13framework_a13->get_option( 'lg_lightbox_full_screen', 'on' ) === 'on', 'lg_lightbox_zoom' => $apollo13framework_a13->get_option( 'lg_lightbox_zoom', 'on' ) === 'on', 'lg_lightbox_mode' => $apollo13framework_a13->get_option( 'lg_lightbox_mode', 'lg-slide' ), 'lg_lightbox_speed' => $apollo13framework_a13->get_option( 'lg_lightbox_speed', '600' ), 'lg_lightbox_preload' => $apollo13framework_a13->get_option( 'lg_lightbox_preload', '1' ), 'lg_lightbox_hide_delay' => $apollo13framework_a13->get_option( 'lg_lightbox_hide_delay', '2000' ), 'lg_lightbox_autoplay_pause' => $apollo13framework_a13->get_option( 'lg_lightbox_autoplay_pause', '5000' ), 'lightbox_single_post' => $apollo13framework_a13->get_option( 'lightbox_single_post', 'off' ) === 'on', ); //add only if proofing is enabled $proofing = (int)( $apollo13framework_a13->get_meta( '_proofing' ) === 'on' ); if($proofing){ $params['proofing_manual_ids'] = $apollo13framework_a13->get_meta('_proofing_ids' ) === 'manual'; $params['proofing_add_comment'] = esc_html__( 'Add comment', 'rife-free' ); $params['proofing_comment_placeholder'] = esc_html__( 'Write your comment here…', 'rife-free' ); $params['proofing_mark_item'] = esc_html__( 'Mark item', 'rife-free' ); $params['proofing_uncheck_item'] = esc_html__( 'Uncheck item', 'rife-free' ); $params['album_id'] = get_the_ID(); $params['proofing_nonce'] = wp_create_nonce( "proofing_ajax" ); } return $params; } } add_action( 'wp_head', 'apollo13framework_get_web_fonts_dynamic' ); if(!function_exists( 'apollo13framework_get_web_fonts_dynamic' )) { function apollo13framework_get_web_fonts_dynamic() { //add small inline script that adds class "js" to HTML if JavaScript is supported //important for accessibility ?><script type="text/javascript"> // <![CDATA[ (function(){ var docElement = document.documentElement, className = docElement.className; // Change `no-js` to `js` var reJS = new RegExp('(^|\\s)no-js( |\\s|$)'); //space as literal in second capturing group cause there is strange situation when \s is not catched on load when other plugins add their own classes className = className.replace(reJS, '$1js$2'); docElement.className = className; })(); // ]]> </script><?php global $apollo13framework_a13; $use_loader = $apollo13framework_a13->get_option( 'use_webfontloader', 'on' ) === 'on'; //we load fonts in static way if(!$use_loader){ return; } //add webfonts $fonts_js = apollo13framework_get_theme_web_fonts(); if ( sizeof( $fonts_js['families'] ) ): ?><script type="text/javascript"> // <![CDATA[ WebFontConfig = { google: <?php echo wp_json_encode( $fonts_js ); ?>, active: function () { //tell listeners that fonts are loaded if (window.jQuery) { jQuery(document.body).trigger('webfontsloaded'); } } }; (function (d) { var wf = d.createElement('script'), s = d.scripts[0]; wf.src = '<?php echo esc_url( get_theme_file_uri( 'js/webfontloader.min.js' ) ); ?>'; wf.type = 'text/javascript'; wf.async = 'true'; s.parentNode.insertBefore(wf, s); })(document); // ]]> </script><?php endif; } } add_action( 'wp_enqueue_scripts', 'apollo13framework_get_web_fonts_static' ); if(!function_exists( 'apollo13framework_get_web_fonts_static' )) { function apollo13framework_get_web_fonts_static(){ global $apollo13framework_a13; $use_loader = $apollo13framework_a13->get_option( 'use_webfontloader', 'on' ) === 'on'; //we load fonts dynamically if($use_loader){ return; } $fonts = apollo13framework_get_theme_web_fonts( true ); if( sizeof( $fonts ) ){ $url = 'https://fonts.googleapis.com/css?family='; $parts = array(); $subsets = array(); foreach( $fonts as $font ) { $url_part = str_replace(' ', '%20', $font['font-family'] ); $weights = array_key_exists('variants', $font)? str_replace( 'italic', 'i', implode( ',', $font['variants'] ) ) : ''; $url_part .= strlen( $weights ) ? ':' . $weights : ''; $_subsets = implode( ',', (array)$font['subsets'] ); if(strlen( $_subsets )){ $subsets[] = $_subsets; } //rule for font $parts[] = $url_part; } //join fonts $url .= implode( '%7C', $parts ); //add subsets if( sizeof( $subsets ) ){ $url .= '&subset=' . implode( ',', $subsets ); } //add link to web fonts wp_enqueue_style( 'a13-google-font-combined', $url, false, false, 'all' ); } } } add_action( 'wp_enqueue_scripts', 'apollo13framework_theme_styles', 26 ); //put it later then woocommerce if(!function_exists('apollo13framework_theme_styles')){ /** * Adds CSS files to theme */ function apollo13framework_theme_styles(){ global $apollo13framework_a13; //woocommerce if(apollo13framework_is_woocommerce_activated()){ wp_register_style( 'apollo13framework-woocommerce', get_theme_file_uri( 'css/woocommerce.css' ), array('a13-main-style'), A13FRAMEWORK_THEME_VERSION); wp_style_add_data( 'apollo13framework-woocommerce', 'rtl', 'replace' ); wp_enqueue_style( 'apollo13framework-woocommerce'); } wp_register_style( 'font-awesome', get_theme_file_uri( 'css/font-awesome.min.css' ), false, '4.7.0'); wp_register_style( 'a13-icomoon', get_theme_file_uri( 'css/icomoon.css' ), false, A13FRAMEWORK_THEME_VERSION); wp_register_style( 'a13-main-style', A13FRAMEWORK_TPL_URI . '/style.css', array('font-awesome', 'a13-icomoon'), A13FRAMEWORK_THEME_VERSION); wp_style_add_data( 'a13-main-style', 'rtl', 'replace' ); //Image carousel wp_register_style( 'jquery-owl-carousel', get_theme_file_uri( 'css/owl.carousel.min.css' ), array(), A13FRAMEWORK_THEME_VERSION); //lightGallery lightbox wp_register_style( 'jquery-lightgallery-transitions', get_theme_file_uri( 'js/light-gallery/css/lg-transitions.min.css' ), false, '1.9.0' ); $lg_default_transition = $apollo13framework_a13->get_option( 'lg_lightbox_mode' ) === 'lg-slide'; wp_register_style( 'jquery-lightgallery', get_theme_file_uri( 'js/light-gallery/css/lightgallery.min.css' ), ($lg_default_transition ? false : array('jquery-lightgallery-transitions')), '1.9.0' ); //lightbox $lightbox = $apollo13framework_a13->get_option( 'apollo_lightbox' ); if( $lightbox === 'lightGallery' ){ wp_enqueue_style('jquery-lightgallery'); } wp_enqueue_style('a13-main-style'); //in customizer we print user settings CSS with unique IDS inline if( ! is_customize_preview() ){ $fallback = false; if( function_exists( 'a13fe_generate_user_css' ) ){ $user_css_file = a13fe_user_css_name(); if( file_exists( $user_css_file ) ){ $last_modified = filemtime( $user_css_file ); wp_enqueue_style( 'a13-user-css', a13fe_user_css_name( true ), array( 'a13-main-style' ), A13FRAMEWORK_THEME_VERSION . '_' . $last_modified ); } else{ $fallback = true; } } else{ $fallback = true; } if($fallback){ //register empty handle to not break backward compatibility with child themes //it is also used on styles generated per post wp_register_style( 'a13-user-css', false, array('a13-main-style') ); //add user settings CSS apollo13framework_enable_user_css_functions(); wp_add_inline_style( 'a13-user-css', apollo13framework_get_user_css() ); wp_enqueue_style( 'a13-user-css' ); } } else{ //register empty handle so styles could attach wp_register_style( 'a13-user-css', false, array('a13-main-style') ); } if( class_exists( 'YITH_WCWL' ) ){ //remove conflicting styles from wishlist plugin global $wp_styles; $wp_styles->registered['yith-wcwl-font-awesome']->src = get_theme_file_uri( 'css/font-awesome.min.css' ); $wp_styles->registered['yith-wcwl-font-awesome']->ver = '4.7.0'; } } } add_action( 'wp_enqueue_scripts', 'apollo13framework_elementor_fa5_fix', 27 ); //put it after theme styles if(!function_exists('apollo13framework_elementor_fa5_fix')){ /** * If there is Elementor in version 2.6.0 or newer we use Elementor shim to move to FontAwesome 5 */ function apollo13framework_elementor_fa5_fix() { if( defined( 'ELEMENTOR_VERSION' ) && version_compare( ELEMENTOR_VERSION, '2.6.0', '>=' ) ){ //load font awesome shim \Elementor\Icons_Manager::enqueue_shim(); } } } if(!function_exists('apollo13framework_pingback_header')){ /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function apollo13framework_pingback_header() { if( is_singular() && pings_open() ){ printf( '<link rel="pingback" href="%s">' . "\n", get_bloginfo( 'pingback_url' ) ); } } } add_action( 'wp_head', 'apollo13framework_pingback_header' );
Upload File
Create Folder