![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/kicker/plugins/trx_addons/ |
<?php /* ThemeREX Addons support functions ------------------------------------------------------------------------------- */ // Add theme-specific functions require_once kicker_get_file_dir( 'plugins/trx_addons/trx_addons-setup.php' ); // Theme init priorities: // 1 - register filters, that add/remove lists items for the Theme Options if ( ! function_exists( 'kicker_trx_addons_theme_setup1' ) ) { add_action( 'after_setup_theme', 'kicker_trx_addons_theme_setup1', 1 ); function kicker_trx_addons_theme_setup1() { if ( kicker_exists_trx_addons() ) { add_filter( 'kicker_filter_list_posts_types', 'kicker_trx_addons_list_post_types' ); add_filter( 'kicker_filter_list_header_footer_types', 'kicker_trx_addons_list_header_footer_types' ); add_filter( 'kicker_filter_list_header_styles', 'kicker_trx_addons_list_header_styles' ); add_filter( 'kicker_filter_list_footer_styles', 'kicker_trx_addons_list_footer_styles' ); add_filter( 'kicker_filter_list_sidebar_styles', 'kicker_trx_addons_list_sidebar_styles' ); add_filter( 'kicker_filter_list_blog_styles', 'kicker_trx_addons_list_blog_styles', 10, 3 ); add_action( 'admin_init', 'kicker_trx_addons_add_link_edit_layout' ); // Old way: 'kicker_action_load_options' add_action( 'customize_register', 'kicker_trx_addons_add_link_edit_layout' ); // Old way: 'kicker_action_load_options' add_action( 'kicker_action_save_options', 'kicker_trx_addons_action_save_options', 1 ); add_action( 'kicker_action_before_body', 'kicker_trx_addons_action_before_body', 1); add_action( 'kicker_action_page_content_wrap', 'kicker_trx_addons_action_page_content_wrap', 10, 1 ); add_action( 'kicker_action_before_header', 'kicker_trx_addons_action_before_header' ); add_action( 'kicker_action_after_header', 'kicker_trx_addons_action_after_header' ); add_action( 'kicker_action_before_footer', 'kicker_trx_addons_action_before_footer' ); add_action( 'kicker_action_after_footer', 'kicker_trx_addons_action_after_footer' ); add_action( 'kicker_action_before_sidebar_wrap', 'kicker_trx_addons_action_before_sidebar_wrap', 10, 1 ); add_action( 'kicker_action_after_sidebar_wrap', 'kicker_trx_addons_action_after_sidebar_wrap', 10, 1 ); add_action( 'kicker_action_before_sidebar', 'kicker_trx_addons_action_before_sidebar', 10, 1 ); add_action( 'kicker_action_after_sidebar', 'kicker_trx_addons_action_after_sidebar', 10, 1 ); add_action( 'kicker_action_between_posts', 'kicker_trx_addons_action_between_posts' ); add_action( 'kicker_action_before_post_header', 'kicker_trx_addons_action_before_post_header' ); add_action( 'kicker_action_after_post_header', 'kicker_trx_addons_action_after_post_header' ); add_action( 'kicker_action_before_post_content', 'kicker_trx_addons_action_before_post_content' ); add_action( 'kicker_action_after_post_content', 'kicker_trx_addons_action_after_post_content' ); add_filter( 'trx_addons_filter_default_layouts', 'kicker_trx_addons_default_layouts' ); add_filter( 'trx_addons_filter_load_options', 'kicker_trx_addons_default_components' ); add_filter( 'trx_addons_cpt_list_options', 'kicker_trx_addons_cpt_list_options', 10, 2 ); add_filter( 'trx_addons_filter_sass_import', 'kicker_trx_addons_sass_import', 10, 2 ); add_filter( 'trx_addons_filter_override_options', 'kicker_trx_addons_override_options' ); add_filter( 'trx_addons_filter_post_meta', 'kicker_trx_addons_post_meta', 10, 2 ); add_filter( 'trx_addons_filter_post_meta_args', 'kicker_trx_addons_post_meta_args', 10, 3); add_filter( 'kicker_filter_post_meta_args', 'kicker_trx_addons_post_meta_args', 10, 3 ); add_filter( 'kicker_filter_list_meta_parts', 'kicker_trx_addons_list_meta_parts' ); add_filter( 'trx_addons_filter_get_list_meta_parts', 'kicker_trx_addons_get_list_meta_parts' ); add_action( 'kicker_action_show_post_meta', 'kicker_trx_addons_show_post_meta', 10, 3 ); add_filter( 'kicker_filter_list_hovers', 'kicker_trx_addons_custom_hover_list' ); add_filter( 'trx_addons_filter_get_theme_info', 'kicker_trx_addons_get_theme_info', 9 ); add_filter( 'trx_addons_filter_get_theme_data', 'kicker_trx_addons_get_theme_data', 9, 2 ); add_filter( 'trx_addons_filter_get_theme_file_dir', 'kicker_trx_addons_get_theme_file_dir', 10, 3 ); add_filter( 'trx_addons_filter_get_theme_folder_dir', 'kicker_trx_addons_get_theme_folder_dir', 10, 3 ); add_action( 'trx_addons_action_create_layout', 'kicker_trx_addons_create_layout', 10, 5 ); add_action( 'trx_addons_action_create_layouts', 'kicker_trx_addons_create_layouts', 10, 1 ); } } } // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'kicker_trx_addons_theme_setup9' ) ) { add_action( 'after_setup_theme', 'kicker_trx_addons_theme_setup9', 9 ); function kicker_trx_addons_theme_setup9() { if ( kicker_exists_trx_addons() ) { add_filter( 'trx_addons_filter_add_thumb_names', 'kicker_trx_addons_add_thumb_sizes' ); add_filter( 'trx_addons_filter_add_thumb_sizes', 'kicker_trx_addons_add_thumb_sizes' ); add_filter( 'trx_addons_filter_get_thumb_size', 'kicker_trx_addons_get_thumb_size' ); add_filter( 'trx_addons_filter_video_width', 'kicker_trx_addons_video_width', 10, 2 ); add_filter( 'trx_addons_filter_video_dimensions', 'kicker_trx_addons_video_dimensions', 10, 2 ); add_filter( 'kicker_filter_video_dimensions', 'kicker_trx_addons_video_dimensions_in_video_list', 10, 2 ); add_action( 'kicker_action_before_featured', 'kicker_trx_addons_before_featured_image' ); add_action( 'kicker_action_after_featured', 'kicker_trx_addons_after_featured_image' ); add_filter( 'trx_addons_filter_featured_image', 'kicker_trx_addons_featured_image', 10, 2 ); add_filter( 'trx_addons_filter_featured_hover', 'kicker_trx_addons_featured_hover', 10, 2); add_filter( 'kicker_filter_post_featured_classes', 'kicker_trx_addons_post_featured_classes', 10, 3 ); add_filter( 'kicker_filter_post_featured_data', 'kicker_trx_addons_post_featured_data', 10, 3 ); add_filter( 'kicker_filter_args_featured', 'kicker_trx_addons_args_featured', 10, 3 ); add_action( 'kicker_action_custom_hover_icons', 'kicker_trx_addons_custom_hover_icons', 10, 2 ); add_action( 'trx_addons_action_add_hover_icons', 'kicker_trx_addons_add_hover_icons', 10, 2 ); add_filter( 'trx_addons_filter_get_list_sc_image_hover', 'kicker_trx_addons_get_list_sc_image_hover' ); add_filter( 'trx_addons_filter_no_image', 'kicker_trx_addons_no_image', 10, 2 ); add_filter( 'trx_addons_filter_sc_blogger_template', 'kicker_trx_addons_sc_blogger_template', 10, 2 ); add_filter( 'trx_addons_filter_get_list_icons_classes', 'kicker_trx_addons_get_list_icons_classes', 10, 2 ); add_filter( 'trx_addons_filter_clear_icon_name', 'kicker_trx_addons_clear_icon_name' ); add_filter( 'kicker_filter_add_sort_order', 'kicker_trx_addons_add_sort_order', 10, 3 ); add_filter( 'kicker_filter_post_content', 'kicker_trx_addons_filter_post_content' ); add_filter( 'kicker_filter_get_post_categories', 'kicker_trx_addons_get_post_categories', 10, 2 ); add_filter( 'kicker_filter_get_post_date', 'kicker_trx_addons_get_post_date' ); add_filter( 'trx_addons_filter_get_post_date', 'kicker_trx_addons_get_post_date_wrap' ); add_filter( 'kicker_filter_post_type_taxonomy', 'kicker_trx_addons_post_type_taxonomy', 10, 2 ); add_filter( 'kicker_filter_term_name', 'kicker_trx_addons_term_name', 10, 2 ); add_filter( 'trx_addons_filter_theme_logo', 'kicker_trx_addons_theme_logo' ); add_filter( 'trx_addons_filter_show_site_name_as_logo', 'kicker_trx_addons_show_site_name_as_logo' ); add_filter( 'kicker_filter_sidebar_present', 'kicker_trx_addons_sidebar_present' ); add_filter( 'trx_addons_filter_privacy_text', 'kicker_trx_addons_privacy_text' ); add_filter( 'trx_addons_filter_privacy_url', 'kicker_trx_addons_privacy_url' ); add_action( 'kicker_action_show_layout', 'kicker_trx_addons_action_show_layout', 10, 2 ); add_filter( 'trx_addons_filter_get_theme_accent_color', 'kicker_trx_addons_get_theme_accent_color' ); add_filter( 'trx_addons_filter_get_theme_bg_color', 'kicker_trx_addons_get_theme_bg_color' ); add_filter( 'kicker_filter_detect_blog_mode', 'kicker_trx_addons_detect_blog_mode' ); add_filter( 'kicker_filter_get_blog_title', 'kicker_trx_addons_get_blog_title' ); add_filter( 'trx_addons_filter_get_blog_title', 'kicker_trx_addons_get_blog_title_from_blog_archive' ); add_filter( 'kicker_filter_get_post_link', 'kicker_trx_addons_get_post_link'); add_action( 'kicker_action_login', 'kicker_trx_addons_action_login' ); add_action( 'kicker_action_cart', 'kicker_trx_addons_action_cart' ); add_action( 'kicker_action_product_attributes', 'kicker_trx_addons_action_product_attributes', 10, 1 ); add_action( 'kicker_action_breadcrumbs', 'kicker_trx_addons_action_breadcrumbs' ); add_filter( 'kicker_filter_get_translated_layout', 'kicker_trx_addons_filter_get_translated_layout', 10, 1 ); add_action( 'kicker_action_before_single_post_video', 'kicker_trx_addons_action_before_single_post_video', 10, 1 ); add_action( 'kicker_action_after_single_post_video', 'kicker_trx_addons_action_after_single_post_video', 10, 1 ); add_filter( 'trx_addons_filter_page_background_selector', 'kicker_trx_addons_get_page_background_selector' ); if ( is_admin() ) { add_filter( 'kicker_filter_allow_override_options', 'kicker_trx_addons_allow_override_options', 10, 2 ); add_filter( 'kicker_filter_allow_theme_icons', 'kicker_trx_addons_allow_theme_icons', 10, 2 ); add_filter( 'trx_addons_filter_export_options', 'kicker_trx_addons_export_options' ); add_filter( 'kicker_filter_options_get_list_choises', 'kicker_trx_addons_options_get_list_choises', 999, 2 ); add_filter( 'trx_addons_filter_disallow_term_name_modify', 'kicker_trx_addons_disallow_term_name_modify', 10, 3 ); } else { add_filter( 'trx_addons_filter_inc_views', 'kicker_trx_addons_inc_views' ); add_filter( 'kicker_filter_related_thumb_size', 'kicker_trx_addons_related_thumb_size' ); add_filter( 'kicker_filter_show_related_posts', 'kicker_trx_addons_show_related_posts' ); add_filter( 'trx_addons_filter_show_related_posts_after_article', 'kicker_trx_addons_show_related_posts_after_article' ); add_filter( 'trx_addons_filter_args_related', 'kicker_trx_addons_args_related' ); add_filter( 'trx_addons_filter_seo_snippets', 'kicker_trx_addons_seo_snippets' ); add_action( 'trx_addons_action_before_article', 'kicker_trx_addons_before_article', 10, 1 ); add_action( 'trx_addons_action_article_start', 'kicker_trx_addons_article_start', 10, 1 ); add_filter( 'kicker_filter_get_mobile_menu', 'kicker_trx_addons_get_mobile_menu' ); add_action( 'kicker_action_user_meta', 'kicker_trx_addons_action_user_meta', 10, 1 ); add_filter( 'trx_addons_filter_featured_image_override', 'kicker_trx_addons_featured_image_override' ); add_filter( 'trx_addons_filter_get_current_mode_image', 'kicker_trx_addons_get_current_mode_image' ); add_filter( 'kicker_filter_get_post_iframe', 'kicker_trx_addons_get_post_iframe', 10, 1 ); add_action( 'kicker_action_before_full_post_content', 'kicker_trx_addons_before_full_post_content' ); add_action( 'kicker_action_after_full_post_content', 'kicker_trx_addons_after_full_post_content' ); add_filter( 'trx_addons_filter_disable_animation_on_mobile', 'kicker_trx_addons_disable_animation_on_mobile' ); add_filter( 'trx_addons_filter_custom_meta_value_strip_tags', 'kicker_trx_addons_custom_meta_value_strip_tags' ); } add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_frontend_scripts', 1100 ); add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_responsive_styles', 2000 ); //-- Separate loading styles of the ThemeREX Addons components (cpt, shortcodes, widgets) add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_frontend_scripts_separate', 1100 ); add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_responsive_styles_separate', 2000 ); if ( kicker_optimize_css_and_js_loading() && apply_filters( 'kicker_filters_separate_trx_addons_styles', false ) ) { $components = kicker_trx_addons_get_separate_components(); foreach( $components as $component ) { add_action( "trx_addons_action_load_scripts_front_{$component}", 'kicker_trx_addons_frontend_scripts_separate', 10, 1 ); add_action( "trx_addons_action_load_scripts_front_{$component}", 'kicker_trx_addons_responsive_styles_separate', 10, 1 ); } } //-- /End separate loading add_filter( 'kicker_filter_merge_styles', 'kicker_trx_addons_merge_styles' ); add_filter( 'kicker_filter_merge_styles_responsive', 'kicker_trx_addons_merge_styles_responsive' ); add_filter( 'kicker_filter_merge_scripts', 'kicker_trx_addons_merge_scripts' ); add_filter( 'kicker_filter_prepare_css', 'kicker_trx_addons_prepare_css', 10, 2 ); add_filter( 'kicker_filter_prepare_js', 'kicker_trx_addons_prepare_js', 10, 2 ); add_filter( 'kicker_filter_localize_script', 'kicker_trx_addons_localize_script' ); add_filter( 'trx_addons_filter_load_tweenmax', 'kicker_trx_addons_load_tweenmax' ); // The priority 0 is used to catch loading component before the component-specific action is triggered on priority 1 add_action( 'trx_addons_action_load_scripts_front', 'kicker_trx_addons_load_frontend_scripts', 0, 2 ); } // Add this filter any time: if plugin exists - load plugin's styles, if not exists - load layouts.css instead plugin's styles add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_layouts_styles' ); if ( is_admin() ) { add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_trx_addons_tgmpa_required_plugins', 1 ); add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_trx_addons_tgmpa_required_plugins_all', 999 ); } else { add_action( 'kicker_action_search', 'kicker_trx_addons_action_search', 10, 1 ); add_filter( 'kicker_filter_search_form_url', 'kicker_trx_addons_filter_search_form_url', 10, 1 ); } } } // Filter to add in the required plugins list if ( ! function_exists( 'kicker_trx_addons_tgmpa_required_plugins' ) ) { //Handler of the add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_trx_addons_tgmpa_required_plugins', 1 ); function kicker_trx_addons_tgmpa_required_plugins( $list = array() ) { if ( kicker_storage_isset( 'required_plugins', 'trx_addons' ) && kicker_storage_get_array( 'required_plugins', 'trx_addons', 'install' ) !== false ) { $path = kicker_get_plugin_source_path( 'plugins/trx_addons/trx_addons.zip' ); if ( ! empty( $path ) || kicker_get_theme_setting( 'tgmpa_upload' ) ) { $list[] = array( 'name' => kicker_storage_get_array( 'required_plugins', 'trx_addons', 'title' ), 'slug' => 'trx_addons', 'version' => '2.27.5', 'source' => ! empty( $path ) ? $path : 'upload://trx_addons.zip', 'required' => true, ); } } return $list; } } /* Add options in the Theme Options Customizer ------------------------------------------------------------------------------- */ if ( ! function_exists( 'kicker_trx_addons_cpt_list_options' ) ) { // Handler of the add_filter( 'trx_addons_cpt_list_options', 'kicker_trx_addons_cpt_list_options', 10, 2); function kicker_trx_addons_cpt_list_options( $options, $cpt ) { if ( 'layouts' == $cpt && KICKER_THEME_FREE ) { $options = array(); } elseif ( is_array( $options ) ) { foreach ( $options as $k => $v ) { // Store this option in the external (not theme's) storage $options[ $k ]['options_storage'] = 'trx_addons_options'; // Hide this option from plugin's options (only for overriden options) if ( in_array( $cpt, array( 'cars', 'cars_agents', 'certificates', 'courses', 'dishes', 'portfolio', 'properties', 'agents', 'resume', 'services', 'sport', 'team', 'testimonials' ) ) ) { $options[ $k ]['hidden'] = true; } } } return $options; } } // Return plugin's specific options for CPT if ( ! function_exists( 'kicker_trx_addons_get_list_cpt_options' ) ) { function kicker_trx_addons_get_list_cpt_options( $cpt ) { $options = array(); if ( 'cars' == $cpt ) { $options = array_merge( trx_addons_cpt_cars_get_list_options(), trx_addons_cpt_cars_agents_get_list_options() ); } elseif ( 'certificates' == $cpt ) { $options = trx_addons_cpt_certificates_get_list_options(); } elseif ( 'courses' == $cpt ) { $options = trx_addons_cpt_courses_get_list_options(); } elseif ( 'dishes' == $cpt ) { $options = trx_addons_cpt_dishes_get_list_options(); } elseif ( 'portfolio' == $cpt ) { $options = trx_addons_cpt_portfolio_get_list_options(); } elseif ( 'resume' == $cpt ) { $options = trx_addons_cpt_resume_get_list_options(); } elseif ( 'services' == $cpt ) { $options = trx_addons_cpt_services_get_list_options(); } elseif ( 'properties' == $cpt ) { $options = array_merge( trx_addons_cpt_properties_get_list_options(), trx_addons_cpt_agents_get_list_options() ); } elseif ( 'sport' == $cpt ) { $options = trx_addons_cpt_sport_get_list_options(); } elseif ( 'team' == $cpt ) { $options = trx_addons_cpt_team_get_list_options(); } elseif ( 'testimonials' == $cpt ) { $options = trx_addons_cpt_testimonials_get_list_options(); } foreach ( $options as $k => $v ) { // Disable refresh the preview area on change any plugin's option $options[ $k ]['refresh'] = false; // Remove parameter 'hidden' if ( ! empty( $v['hidden'] ) ) { unset( $options[ $k ]['hidden'] ); } // Add description if ( 'info' == $v['type'] ) { $options[ $k ]['desc'] = wp_kses_data( __( 'In order to see changes made by settings of this section, click "Save" and refresh the page', 'kicker' ) ); } } return $options; } } // Theme init priorities: // 3 - add/remove Theme Options elements if ( ! function_exists( 'kicker_trx_addons_setup3' ) ) { add_action( 'after_setup_theme', 'kicker_trx_addons_setup3', 3 ); function kicker_trx_addons_setup3() { // Add option 'Show featured image' to the Single post options to override it in the CPT Portfolio and Services // (make option hidden to disable it in the main section Blog - Single posts and allow only in the post meta // for post types "Portfolio" and "Services") $cpt_override = array(); if ( kicker_exists_portfolio() ) { $cpt_override[] = TRX_ADDONS_CPT_PORTFOLIO_PT; } if ( kicker_exists_services() ) { $cpt_override[] = TRX_ADDONS_CPT_SERVICES_PT; } if ( count( apply_filters( 'kicker_filter_show_featured_cpt', $cpt_override ) ) > 0 ) { kicker_storage_set_array_before( 'options', 'single_style', 'show_featured_image', array( 'title' => esc_html__( 'Show featured image', 'kicker' ), 'desc' => wp_kses_data( __( "Show featured image on single post pages", 'kicker' ) ), 'override' => array( 'mode' => join( ',', $cpt_override ), 'section' => esc_html__( 'Content', 'kicker' ), ), 'hidden' => true, 'std' => 1, 'type' => 'switch', ) ); } // Section 'Cars' - settings to show 'Cars' blog archive and single posts if ( kicker_exists_cars() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'cars' => array( 'title' => esc_html__( 'Cars', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the cars pages.', 'kicker' ) ), 'icon' => 'icon-cars', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'cars' ), kicker_options_get_list_cpt_options( 'cars' ), array( 'single_info_cars' => array( 'title' => esc_html__( 'Single car', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_related_posts_cars' => array( 'title' => esc_html__( 'Show related posts', 'kicker' ), 'desc' => wp_kses_data( __( "Show 'Related posts' section on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'related_posts_cars' => array( 'title' => esc_html__( 'Related cars', 'kicker' ), 'desc' => wp_kses_data( __( 'How many related cars should be displayed on the single car page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_cars' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_cars' => array( 'title' => esc_html__( 'Related columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output related cars on the single car page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_cars' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 3 ), 'type' => 'select', ), ) ) ); } // Section 'Certificates' if ( kicker_exists_certificates() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'certificates' => array( 'title' => esc_html__( 'Certificates', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display "Certificates"', 'kicker' ) ), 'icon' => 'icon-certificates', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'certificates' ) ) ); } // Section 'Courses' - settings to show 'Courses' blog archive and single posts if ( kicker_exists_courses() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'courses' => array( 'title' => esc_html__( 'Courses', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the courses pages', 'kicker' ) ), 'icon' => 'icon-courses', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'courses' ), kicker_options_get_list_cpt_options( 'courses' ), array( 'single_info_courses' => array( 'title' => esc_html__( 'Single course', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_related_posts_courses' => array( 'title' => esc_html__( 'Show related posts', 'kicker' ), 'desc' => wp_kses_data( __( "Show 'Related posts' section on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'related_posts_courses' => array( 'title' => esc_html__( 'Related courses', 'kicker' ), 'desc' => wp_kses_data( __( 'How many related courses should be displayed on the single course page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_courses' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_courses' => array( 'title' => esc_html__( 'Related columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output related courses on the single course page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_courses' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 3 ), 'type' => 'select', ), ) ) ); } // Section 'Dishes' - settings to show 'Dishes' blog archive and single posts if ( kicker_exists_dishes() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'dishes' => array( 'title' => esc_html__( 'Dishes', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the dishes pages', 'kicker' ) ), 'icon' => 'icon-dishes', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'dishes' ), kicker_options_get_list_cpt_options( 'dishes' ), array( 'single_info_dishes' => array( 'title' => esc_html__( 'Single dish', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_related_posts_dishes' => array( 'title' => esc_html__( 'Show related posts', 'kicker' ), 'desc' => wp_kses_data( __( "Show 'Related posts' section on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'related_posts_dishes' => array( 'title' => esc_html__( 'Related dishes', 'kicker' ), 'desc' => wp_kses_data( __( 'How many related dishes should be displayed on the single dish page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_dishes' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_dishes' => array( 'title' => esc_html__( 'Related columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output related dishes on the single dish page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_dishes' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 3 ), 'type' => 'select', ), ) ) ); } // Section 'Portfolio' - settings to show 'Portfolio' blog archive and single posts if ( kicker_exists_portfolio() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'portfolio' => array( 'title' => esc_html__( 'Portfolio', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the portfolio pages', 'kicker' ) ), 'icon' => 'icon-portfolio-1', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'portfolio' ), kicker_options_get_list_cpt_options( 'portfolio' ), array( 'single_info_portfolio' => array( 'title' => esc_html__( 'Single portfolio item', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_featured_image_portfolio' => array( 'title' => esc_html__( 'Show featured image', 'kicker' ), 'desc' => wp_kses_data( __( "Show featured image on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'show_related_posts_portfolio' => array( 'title' => esc_html__( 'Show related posts', 'kicker' ), 'desc' => wp_kses_data( __( "Show 'Related posts' section on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'related_posts_portfolio' => array( 'title' => esc_html__( 'Related portfolio items', 'kicker' ), 'desc' => wp_kses_data( __( 'How many related portfolio items should be displayed on the single portfolio page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_portfolio' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_portfolio' => array( 'title' => esc_html__( 'Related columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output related portfolio on the single portfolio page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_portfolio' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 4 ), 'type' => 'select', ), ) ) ); } // Section 'Properties' - settings to show 'Properties' blog archive and single posts if ( kicker_exists_properties() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'properties' => array( 'title' => esc_html__( 'Properties', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the properties pages', 'kicker' ) ), 'icon' => 'icon-building', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'properties' ), kicker_options_get_list_cpt_options( 'properties' ), array( 'single_info_properties' => array( 'title' => esc_html__( 'Single property', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_related_posts_properties' => array( 'title' => esc_html__( 'Show related posts', 'kicker' ), 'desc' => wp_kses_data( __( "Show 'Related posts' section on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'related_posts_properties' => array( 'title' => esc_html__( 'Related properties', 'kicker' ), 'desc' => wp_kses_data( __( 'How many related properties should be displayed on the single property page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_properties' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_properties' => array( 'title' => esc_html__( 'Related columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output related properties on the single property page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_properties' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 3 ), 'type' => 'select', ), ) ) ); } // Section 'Resume' if ( kicker_exists_resume() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'resume' => array( 'title' => esc_html__( 'Resume', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display "Resume"', 'kicker' ) ), 'icon' => 'icon-resume', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'resume' ) ) ); } // Section 'Services' - settings to show 'Services' blog archive and single posts if ( kicker_exists_services() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'services' => array( 'title' => esc_html__( 'Services', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the services pages', 'kicker' ) ), 'icon' => 'icon-services', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'services' ), kicker_options_get_list_cpt_options( 'services' ), array( 'single_info_services' => array( 'title' => esc_html__( 'Single service item', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_featured_image_services' => array( 'title' => esc_html__( 'Show featured image', 'kicker' ), 'desc' => wp_kses_data( __( "Show featured image on single post pages", 'kicker' ) ), 'std' => 1, 'type' => 'switch', ), 'show_related_posts_services' => array( 'title' => esc_html__( 'Show related posts', 'kicker' ), 'desc' => wp_kses_data( __( "Show 'Related posts' section on single post pages", 'kicker' ) ), 'std' => 0, 'type' => 'switch', ), 'related_posts_services' => array( 'title' => esc_html__( 'Related services', 'kicker' ), 'desc' => wp_kses_data( __( 'How many related services should be displayed on the single service page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_services' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_services' => array( 'title' => esc_html__( 'Related columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output related services on the single service page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_services' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 3 ), 'type' => 'select', ), ) ) ); } // Section 'Sport' - settings to show 'Sport' blog archive and single posts if ( kicker_exists_sport() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'sport' => array( 'title' => esc_html__( 'Sport', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the sport pages', 'kicker' ) ), 'icon' => 'icon-sport', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'sport' ), kicker_options_get_list_cpt_options( 'sport' ) ) ); } // Section 'Team' - settings to show 'Team' blog archive and single posts if ( kicker_exists_team() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'team' => array( 'title' => esc_html__( 'Team', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display the team members pages.', 'kicker' ) ), 'icon' => 'icon-team', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'team' ), kicker_options_get_list_cpt_options( 'team' ), array( 'single_info_team' => array( 'title' => esc_html__( 'Team member single page', 'kicker' ), 'desc' => '', 'type' => 'info', ), 'show_related_posts_team' => array( 'title' => esc_html__( "Show team member's posts", 'kicker' ), 'desc' => wp_kses_data( __( "Display the section 'Team member's posts' on the single team page", 'kicker' ) ), 'std' => 0, 'type' => 'switch', ), 'related_posts_team' => array( 'title' => esc_html__( 'Post count', 'kicker' ), 'desc' => wp_kses_data( __( 'How many posts should be displayed on the single team page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_team' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 1, 9 ), 'type' => 'select', ), 'related_columns_team' => array( 'title' => esc_html__( 'Post columns', 'kicker' ), 'desc' => wp_kses_data( __( 'How many columns should be used to output posts on the single team page?', 'kicker' ) ), 'dependency' => array( 'show_related_posts_team' => array( 1 ), ), 'std' => 3, 'options' => kicker_get_list_range( 2, 3 ), 'type' => 'select', ), ) ) ); } // Section 'Testimonials' if ( kicker_exists_testimonials() ) { kicker_storage_merge_array( 'options', '', array_merge( array( 'testimonials' => array( 'title' => esc_html__( 'Testimonials', 'kicker' ), 'desc' => wp_kses_data( __( 'Select parameters to display "Testimonials"', 'kicker' ) ), 'icon' => 'icon-testimonials', 'type' => 'section', ), ), kicker_trx_addons_get_list_cpt_options( 'testimonials' ) ) ); } } } // Add 'layout edit' link to the 'description' in the 'header_style' and 'footer_style' parameters if ( ! function_exists( 'kicker_trx_addons_add_link_edit_layout' ) ) { //Old way: Handler of the add_action( 'kicker_action_load_options', 'kicker_trx_addons_add_link_edit_layout'); //New way: Handler of the add_action( 'admin_init', 'kicker_trx_addons_add_link_edit_layout'); // Handler of the add_action( 'customize_register', 'kicker_trx_addons_add_link_edit_layout' ); function kicker_trx_addons_add_link_edit_layout() { static $added = false; if ( $added ) { return; } $added = true; global $KICKER_STORAGE; foreach ( $KICKER_STORAGE['options'] as $k => $v ) { if ( ! isset( $v['std'] ) ) { continue; } $k1 = substr( $k, 0, 12 ); if ( 'header_style' == $k1 || 'footer_style' == $k1 ) { $layout = kicker_get_theme_option( $k ); if ( kicker_is_inherit( $layout ) ) { $layout = kicker_get_theme_option( $k1 ); } if ( ! empty( $layout ) ) { $layout = explode( '-', $layout ); $layout = $layout[ count( $layout ) - 1 ]; if ( (int) $layout > 0 ) { $KICKER_STORAGE['options'][ $k ]['desc'] = $v['desc'] . '<br>' . sprintf( '<a href="%1$s" class="kicker_post_editor' . ( intval( $layout ) == 0 ? ' kicker_hidden' : '' ) . '" target="_blank">%2$s</a>', admin_url( apply_filters( 'kicker_filter_post_edit_link', sprintf( 'post.php?post=%d&action=edit', $layout ), $layout ) ), __( 'Open selected layout in a new tab to edit', 'kicker' ) ); } } } } } } // Setup internal plugin's parameters if ( ! function_exists( 'kicker_trx_addons_init_settings' ) ) { add_filter( 'trx_addons_init_settings', 'kicker_trx_addons_init_settings' ); function kicker_trx_addons_init_settings( $settings ) { $settings['socials_type'] = kicker_get_theme_setting( 'socials_type' ); $settings['icons_type'] = kicker_get_theme_setting( 'icons_type' ); $settings['icons_selector'] = kicker_get_theme_setting( 'icons_selector' ); $settings['icons_source'] = kicker_get_theme_setting( 'icons_source' ); $settings['gutenberg_safe_mode'] = kicker_get_theme_setting( 'gutenberg_safe_mode' ); $settings['gutenberg_add_context'] = kicker_get_theme_setting( 'gutenberg_add_context' ); $settings['modify_gutenberg_blocks'] = kicker_get_theme_setting( 'modify_gutenberg_blocks' ); $settings['allow_gutenberg_blocks'] = kicker_get_theme_setting( 'allow_gutenberg_blocks' ); $settings['subtitle_above_title'] = kicker_get_theme_setting( 'subtitle_above_title' ); $settings['add_hide_on_xxx'] = kicker_get_theme_setting( 'add_hide_on_xxx' ); $settings['options_tabs_position'] = kicker_get_theme_setting( 'options_tabs_position' ); $settings['wrap_menu_items_with_span'] = kicker_get_theme_setting( 'wrap_menu_items_with_span' ); $settings['remove_empty_menu_items'] = kicker_get_theme_setting( 'remove_empty_menu_items' ); $settings['banners_show_effect'] = kicker_get_theme_setting( 'banners_show_effect' ); $settings['add_render_attributes'] = kicker_get_theme_setting( 'add_render_attributes' ); $settings['slider_round_lengths'] = kicker_get_theme_setting( 'slider_round_lengths' ); return $settings; } } // Return theme-specific data by var name if ( ! function_exists( 'kicker_trx_addons_get_theme_data' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_theme_data, 'kicker_trx_addons_get_theme_data', 9, 2); function kicker_trx_addons_get_theme_data( $data, $name ) { if ( kicker_storage_isset( $name ) ) { $data = kicker_storage_get( $name ); } return $data; } } // Return theme-specific data to the Dashboard Widget and Theme Panel // Attention: // 1) To show the item in the Dashboard Widget you need specify 'link' and 'link_text' // 2) To show the item in the Theme Dashboard you need specify 'link', 'image', 'icon' (optional), 'title', 'description' and 'button' if ( ! function_exists( 'kicker_trx_addons_get_theme_info' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_theme_info', 'kicker_trx_addons_get_theme_info', 9); function kicker_trx_addons_get_theme_info( $theme_info ) { $theme_info['theme_slug'] = apply_filters( 'kicker_filter_original_theme_slug', ! empty( $theme_info['theme_slug'] ) ? $theme_info['theme_slug'] : get_template() ); $theme_info['theme_activated'] = (int) get_option( 'kicker_theme_activated' ); $theme_info['theme_pro_key'] = kicker_get_theme_pro_key(); $theme_info['theme_plugins'] = kicker_storage_get( 'theme_plugins' ); $theme_info['theme_categories'] = explode( ',', kicker_storage_get( 'theme_categories' ) ); $theme_info['theme_actions'] = array( 'options' => array( 'link' => admin_url() . 'customize.php', 'image' => kicker_get_file_url( 'theme-specific/theme-about/images/theme-panel-options.svg' ), 'title' => esc_html__( 'Theme Options', 'kicker' ), 'description' => esc_html__( "Customize the appearance of your theme and adjust specific theme settings. Both WordPress Customizer and Theme Options are available.", 'kicker' ), 'button' => esc_html__( 'Customizer', 'kicker' ), ), 'demo' => array( 'link' => kicker_storage_get( 'theme_demo_url' ), 'link_text' => esc_html__( 'Demo', 'kicker' ), // If not empty - action visible in "Dashboard widget" ), 'doc' => array( 'link' => kicker_storage_get( 'theme_doc_url' ), 'link_text' => esc_html__( 'Docs', 'kicker' ), 'image' => kicker_get_file_url( 'theme-specific/theme-about/images/theme-panel-doc.svg' ), 'title' => esc_html__( 'Documentation', 'kicker' ), 'description' => esc_html__( "Having questions? Learn all the ins and outs of the theme in our detailed documentation. That's the go-to place if you need advice.", 'kicker' ), 'button' => esc_html__( 'Open Documentation', 'kicker' ), // If not empty - action visible in "Theme Panel" ), 'support' => array( 'link' => kicker_storage_get( 'theme_support_url' ), 'link_text' => esc_html__( 'Support', 'kicker' ), 'image' => kicker_get_file_url( 'theme-specific/theme-about/images/theme-panel-support.svg' ), 'title' => esc_html__( 'Support', 'kicker' ), 'description' => esc_html__( "Are you stuck and need help? Don't worry, you can always submit a support ticket, and our team will help you out.", 'kicker' ), 'button' => esc_html__( 'Read Policy & Submit Ticket', 'kicker' ), ), ); if ( KICKER_THEME_FREE ) { $theme_info['theme_name'] .= ' ' . esc_html__( 'Free', 'kicker' ); $theme_info['theme_free'] = true; $theme_info['theme_actions']['pro'] = array( 'link' => kicker_storage_get( 'theme_download_url' ), 'link_text' => esc_html__( 'Go PRO', 'kicker' ), 'image' => kicker_get_file_url( 'theme-specific/theme-about/images/theme-panel-pro.svg' ), 'title' => esc_html__( 'Go Pro', 'kicker' ), 'description' => esc_html__( 'Get Pro version to increase power of this theme in many times!', 'kicker' ), 'button' => esc_html__( 'Get PRO Version', 'kicker' ), ); } return $theme_info; } } if ( ! function_exists( 'kicker_trx_addons_tgmpa_required_plugins_all' ) ) { //Handler of the add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_trx_addons_tgmpa_required_plugins_all', 999 ); function kicker_trx_addons_tgmpa_required_plugins_all( $list = array() ) { $theme_plugins = array(); if ( is_array( $list ) ) { foreach( $list as $item ) { $theme_plugins[ $item['slug'] ] = kicker_storage_isset( 'required_plugins', $item['slug'] ) ? kicker_storage_get_array( 'required_plugins', $item['slug'] ) : array( 'title' => $item['name'], 'description' => '', 'required' => false, ); } } kicker_storage_set( 'theme_plugins', apply_filters( 'kicker_filter_theme_plugins', $theme_plugins ) ); return $list; } } // Hide sidebar on the news feed pages if ( ! function_exists( 'kicker_trx_addons_sidebar_present' ) ) { //Handler of the add_filter( 'kicker_filter_sidebar_present', 'kicker_trx_addons_sidebar_present' ); function kicker_trx_addons_sidebar_present( $present ) { return get_post_type() != 'trx_feed' && $present; } } // Return text for the "I agree ..." checkbox if ( ! function_exists( 'kicker_trx_addons_privacy_text' ) ) { //Handler of the add_filter( 'trx_addons_filter_privacy_text', 'kicker_trx_addons_privacy_text' ); function kicker_trx_addons_privacy_text( $text='' ) { return kicker_get_privacy_text(); } } // Return URI of the theme author's Privacy Policy page if ( ! function_exists( 'kicker_trx_addons_privacy_url' ) ) { //Handler of the add_filter( 'trx_addons_filter_privacy_url', 'kicker_trx_addons_privacy_url' ); function kicker_trx_addons_privacy_url( $url='' ) { $new = kicker_storage_get('theme_privacy_url'); if ( ! empty( $new ) ) { $url = $new; } return $url; } } // Hide sidebar on the news feed pages if ( ! function_exists( 'kicker_trx_addons_disallow_term_name_modify' ) ) { //Handler of the add_filter( 'trx_addons_filter_disallow_term_name_modify', 'kicker_trx_addons_disallow_term_name_modify', 10, 3 ); function kicker_trx_addons_disallow_term_name_modify( $disallow, $term_name, $term_obj ) { if ( $disallow && wp_doing_ajax() && in_array( trx_addons_get_value_gp( 'action' ), array( 'kicker_ajax_get_posts' ) ) ) { $disallow = false; } return $disallow; } } /* Plugin's support utilities ------------------------------------------------------------------------------- */ // Check if plugin installed and activated if ( ! function_exists( 'kicker_exists_trx_addons' ) ) { function kicker_exists_trx_addons() { return defined( 'TRX_ADDONS_VERSION' ); } } // Return true if cars is supported if ( ! function_exists( 'kicker_exists_cars' ) ) { function kicker_exists_cars() { return defined( 'TRX_ADDONS_CPT_CARS_PT' ); } } // Return true if certificates is supported if ( ! function_exists( 'kicker_exists_certificates' ) ) { function kicker_exists_certificates() { return defined( 'TRX_ADDONS_CPT_CERTIFICATES_PT' ); } } // Return true if courses is supported if ( ! function_exists( 'kicker_exists_courses' ) ) { function kicker_exists_courses() { return defined( 'TRX_ADDONS_CPT_COURSES_PT' ); } } // Return true if dishes is supported if ( ! function_exists( 'kicker_exists_dishes' ) ) { function kicker_exists_dishes() { return defined( 'TRX_ADDONS_CPT_DISHES_PT' ); } } // Return true if layouts is supported if ( ! function_exists( 'kicker_exists_layouts' ) ) { function kicker_exists_layouts() { return defined( 'TRX_ADDONS_CPT_LAYOUTS_PT' ); } } // Return true if portfolio is supported if ( ! function_exists( 'kicker_exists_portfolio' ) ) { function kicker_exists_portfolio() { return defined( 'TRX_ADDONS_CPT_PORTFOLIO_PT' ); } } // Return true if properties is supported if ( ! function_exists( 'kicker_exists_properties' ) ) { function kicker_exists_properties() { return defined( 'TRX_ADDONS_CPT_PROPERTIES_PT' ); } } // Return true if resume is supported if ( ! function_exists( 'kicker_exists_resume' ) ) { function kicker_exists_resume() { return defined( 'TRX_ADDONS_CPT_RESUME_PT' ); } } // Return true if services is supported if ( ! function_exists( 'kicker_exists_services' ) ) { function kicker_exists_services() { return defined( 'TRX_ADDONS_CPT_SERVICES_PT' ); } } // Return true if sport is supported if ( ! function_exists( 'kicker_exists_sport' ) ) { function kicker_exists_sport() { return defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ); } } // Return true if team is supported if ( ! function_exists( 'kicker_exists_team' ) ) { function kicker_exists_team() { return defined( 'TRX_ADDONS_CPT_TEAM_PT' ); } } // Return true if testimonials is supported if ( ! function_exists( 'kicker_exists_testimonials' ) ) { function kicker_exists_testimonials() { return defined( 'TRX_ADDONS_CPT_TESTIMONIALS_PT' ); } } // Return true if rating (reviews) is supported if ( ! function_exists( 'kicker_exists_reviews' ) ) { function kicker_exists_reviews() { return function_exists( 'trx_addons_reviews_enable' ) && trx_addons_reviews_enable(); } } // Return true if it's cars page if ( ! function_exists( 'kicker_is_cars_page' ) ) { function kicker_is_cars_page() { return ( function_exists( 'trx_addons_is_cars_page' ) && trx_addons_is_cars_page() ) || kicker_is_cars_agents_page(); } } // Return true if it's car's agents page if ( ! function_exists( 'kicker_is_cars_agents_page' ) ) { function kicker_is_cars_agents_page() { return function_exists( 'trx_addons_is_cars_agents_page' ) && trx_addons_is_cars_agents_page(); } } // Return true if it's courses page if ( ! function_exists( 'kicker_is_courses_page' ) ) { function kicker_is_courses_page() { return function_exists( 'trx_addons_is_courses_page' ) && trx_addons_is_courses_page(); } } // Return true if it's dishes page if ( ! function_exists( 'kicker_is_dishes_page' ) ) { function kicker_is_dishes_page() { return function_exists( 'trx_addons_is_dishes_page' ) && trx_addons_is_dishes_page(); } } // Return true if it's properties page if ( ! function_exists( 'kicker_is_properties_page' ) ) { function kicker_is_properties_page() { return ( function_exists( 'trx_addons_is_properties_page' ) && trx_addons_is_properties_page() ) || kicker_is_properties_agents_page(); } } // Return true if it's properties page if ( ! function_exists( 'kicker_is_properties_agents_page' ) ) { function kicker_is_properties_agents_page() { return function_exists( 'trx_addons_is_agents_page' ) && trx_addons_is_agents_page(); } } // Return true if it's portfolio page if ( ! function_exists( 'kicker_is_portfolio_page' ) ) { function kicker_is_portfolio_page() { return function_exists( 'trx_addons_is_portfolio_page' ) && trx_addons_is_portfolio_page(); } } // Return true if it's services page if ( ! function_exists( 'kicker_is_services_page' ) ) { function kicker_is_services_page() { return function_exists( 'trx_addons_is_services_page' ) && trx_addons_is_services_page(); } } // Return true if it's team page if ( ! function_exists( 'kicker_is_team_page' ) ) { function kicker_is_team_page() { return function_exists( 'trx_addons_is_team_page' ) && trx_addons_is_team_page(); } } // Return true if it's sport page if ( ! function_exists( 'kicker_is_sport_page' ) ) { function kicker_is_sport_page() { return function_exists( 'trx_addons_is_sport_page' ) && trx_addons_is_sport_page(); } } // Return true if custom layouts are available if ( ! function_exists( 'kicker_is_layouts_available' ) ) { function kicker_is_layouts_available() { $required_plugins = kicker_storage_get( 'required_plugins' ); return kicker_exists_trx_addons() && ( ( ! empty( $required_plugins['elementor'] ) && ( ! isset( $required_plugins['elementor']['install'] ) || $required_plugins['elementor']['install'] ) && function_exists( 'kicker_exists_elementor' ) && kicker_exists_elementor() ) || ( ! empty( $required_plugins['js_composer'] ) && ( ! isset( $required_plugins['js_composer']['install'] ) || $required_plugins['js_composer']['install'] ) && function_exists( 'kicker_exists_vc' ) && kicker_exists_vc() ) || ( /* ( empty( $required_plugins['elementor'] ) || ( isset( $required_plugins['elementor']['install'] ) && false == $required_plugins['elementor']['install'] ) ) && ( empty( $required_plugins['js_composer'] ) || ( isset( $required_plugins['js_composer']['install'] ) && false == $required_plugins['js_composer']['install'] ) ) && */ function_exists( 'kicker_exists_gutenberg' ) && kicker_exists_gutenberg() ) ); } } // Return true if theme is activated in the Theme Panel if ( ! function_exists( 'kicker_is_theme_activated' ) ) { function kicker_is_theme_activated() { return function_exists( 'trx_addons_is_theme_activated' ) && trx_addons_is_theme_activated(); } } // Return theme activation code if ( ! function_exists( 'kicker_get_theme_activation_code' ) ) { function kicker_get_theme_activation_code() { return function_exists( 'trx_addons_get_theme_activation_code' ) ? trx_addons_get_theme_activation_code() : ''; } } // Detect current blog mode if ( ! function_exists( 'kicker_trx_addons_detect_blog_mode' ) ) { //Handler of the add_filter( 'kicker_filter_detect_blog_mode', 'kicker_trx_addons_detect_blog_mode' ); function kicker_trx_addons_detect_blog_mode( $mode = '' ) { if ( kicker_is_cars_page() ) { $mode = 'cars'; } elseif ( kicker_is_courses_page() ) { $mode = 'courses'; } elseif ( kicker_is_dishes_page() ) { $mode = 'dishes'; } elseif ( kicker_is_properties_page() ) { $mode = 'properties'; } elseif ( kicker_is_portfolio_page() ) { $mode = 'portfolio'; } elseif ( kicker_is_services_page() ) { $mode = 'services'; } elseif ( kicker_is_sport_page() ) { $mode = 'sport'; } elseif ( kicker_is_team_page() ) { $mode = 'team'; } return $mode; } } // Disallow increment views counter on the blog archive if ( ! function_exists( 'kicker_trx_addons_inc_views' ) ) { //Handler of the add_filter( 'trx_addons_filter_inc_views', 'kicker_trx_addons_inc_views'); function kicker_trx_addons_inc_views( $allow = false ) { return $allow && is_page() && kicker_storage_isset( 'blog_archive' ) ? false : $allow; } } // Add team, courses, etc. to the supported posts list if ( ! function_exists( 'kicker_trx_addons_list_post_types' ) ) { //Handler of the add_filter( 'kicker_filter_list_posts_types', 'kicker_trx_addons_list_post_types'); function kicker_trx_addons_list_post_types( $list = array() ) { if ( function_exists( 'trx_addons_get_cpt_list' ) ) { $cpt_list = trx_addons_get_cpt_list(); foreach ( $cpt_list as $cpt => $title ) { if ( ( defined( 'TRX_ADDONS_CPT_CARS_PT' ) && TRX_ADDONS_CPT_CARS_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_COURSES_PT' ) && TRX_ADDONS_CPT_COURSES_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_DISHES_PT' ) && TRX_ADDONS_CPT_DISHES_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_PORTFOLIO_PT' ) && TRX_ADDONS_CPT_PORTFOLIO_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_PROPERTIES_PT' ) && TRX_ADDONS_CPT_PROPERTIES_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_SERVICES_PT' ) && TRX_ADDONS_CPT_SERVICES_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ) && TRX_ADDONS_CPT_COMPETITIONS_PT == $cpt ) || ( defined( 'TRX_ADDONS_CPT_TEAM_PT' ) && TRX_ADDONS_CPT_TEAM_PT == $cpt ) ) { $list[ $cpt ] = $title; } } } return $list; } } // Return taxonomy for current post type if ( ! function_exists( 'kicker_trx_addons_post_type_taxonomy' ) ) { //Handler of the add_filter( 'kicker_filter_post_type_taxonomy', 'kicker_trx_addons_post_type_taxonomy', 10, 2 ); function kicker_trx_addons_post_type_taxonomy( $tax = '', $post_type = '' ) { if ( defined( 'TRX_ADDONS_CPT_CARS_PT' ) && TRX_ADDONS_CPT_CARS_PT == $post_type ) { $tax = TRX_ADDONS_CPT_CARS_TAXONOMY_MAKER; } elseif ( defined( 'TRX_ADDONS_CPT_COURSES_PT' ) && TRX_ADDONS_CPT_COURSES_PT == $post_type ) { $tax = TRX_ADDONS_CPT_COURSES_TAXONOMY; } elseif ( defined( 'TRX_ADDONS_CPT_DISHES_PT' ) && TRX_ADDONS_CPT_DISHES_PT == $post_type ) { $tax = TRX_ADDONS_CPT_DISHES_TAXONOMY; } elseif ( defined( 'TRX_ADDONS_CPT_PORTFOLIO_PT' ) && TRX_ADDONS_CPT_PORTFOLIO_PT == $post_type ) { $tax = TRX_ADDONS_CPT_PORTFOLIO_TAXONOMY; } elseif ( defined( 'TRX_ADDONS_CPT_PROPERTIES_PT' ) && TRX_ADDONS_CPT_PROPERTIES_PT == $post_type ) { $tax = TRX_ADDONS_CPT_PROPERTIES_TAXONOMY_TYPE; } elseif ( defined( 'TRX_ADDONS_CPT_SERVICES_PT' ) && TRX_ADDONS_CPT_SERVICES_PT == $post_type ) { $tax = TRX_ADDONS_CPT_SERVICES_TAXONOMY; } elseif ( defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ) && TRX_ADDONS_CPT_COMPETITIONS_PT == $post_type ) { $tax = TRX_ADDONS_CPT_COMPETITIONS_TAXONOMY; } elseif ( defined( 'TRX_ADDONS_CPT_TEAM_PT' ) && TRX_ADDONS_CPT_TEAM_PT == $post_type ) { $tax = TRX_ADDONS_CPT_TEAM_TAXONOMY; } return $tax; } } // Show categories of the team, courses, etc. if ( ! function_exists( 'kicker_trx_addons_get_post_categories' ) ) { //Handler of the add_filter( 'kicker_filter_get_post_categories', 'kicker_trx_addons_get_post_categories', 10, 2 ); function kicker_trx_addons_get_post_categories( $cats = '', $args = array() ) { $cat_sep = apply_filters( 'kicker_filter_post_meta_cat_separator', '<span class="post_meta_item_cat_separator">' . ( ! isset( $args['cat_sep'] ) || ! empty( $args['cat_sep'] ) ? ', ' : ' ' ) . '</span>', $args ); if ( defined( 'TRX_ADDONS_CPT_CARS_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_CARS_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_CARS_TAXONOMY_TYPE ); } } if ( defined( 'TRX_ADDONS_CPT_COURSES_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_COURSES_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_COURSES_TAXONOMY ); } } if ( defined( 'TRX_ADDONS_CPT_DISHES_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_DISHES_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_DISHES_TAXONOMY ); } } if ( defined( 'TRX_ADDONS_CPT_PORTFOLIO_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_PORTFOLIO_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_PORTFOLIO_TAXONOMY ); } } if ( defined( 'TRX_ADDONS_CPT_PROPERTIES_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_PROPERTIES_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_PROPERTIES_TAXONOMY_TYPE ); } } if ( defined( 'TRX_ADDONS_CPT_SERVICES_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_SERVICES_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_SERVICES_TAXONOMY ); } } if ( defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_COMPETITIONS_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_COMPETITIONS_TAXONOMY ); } } if ( defined( 'TRX_ADDONS_CPT_TEAM_PT' ) ) { if ( get_post_type() == TRX_ADDONS_CPT_TEAM_PT ) { $cats = kicker_get_post_terms( $cat_sep, get_the_ID(), TRX_ADDONS_CPT_TEAM_TAXONOMY ); } } return $cats; } } // Show post's date with the theme-specific format if ( ! function_exists( 'kicker_trx_addons_get_post_date_wrap' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_post_date', 'kicker_trx_addons_get_post_date_wrap'); function kicker_trx_addons_get_post_date_wrap( $dt = '' ) { return apply_filters( 'kicker_filter_get_post_date', $dt ); } } // Show date of the courses if ( ! function_exists( 'kicker_trx_addons_get_post_date' ) ) { //Handler of the add_filter( 'kicker_filter_get_post_date', 'kicker_trx_addons_get_post_date'); function kicker_trx_addons_get_post_date( $dt = '' ) { if ( defined( 'TRX_ADDONS_CPT_COURSES_PT' ) && get_post_type() == TRX_ADDONS_CPT_COURSES_PT ) { $meta = get_post_meta( get_the_ID(), 'trx_addons_options', true ); $dt = $meta['date']; $dt = sprintf( // Translators: Add formatted date to the output $dt < date( 'Y-m-d' ) ? esc_html__( 'Started on %s', 'kicker' ) : esc_html__( 'Starting %s', 'kicker' ), date_i18n( get_option( 'date_format' ), strtotime( $dt ) ) ); } elseif ( defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ) && in_array( get_post_type(), array( TRX_ADDONS_CPT_COMPETITIONS_PT, TRX_ADDONS_CPT_ROUNDS_PT, TRX_ADDONS_CPT_MATCHES_PT ) ) ) { $meta = get_post_meta( get_the_ID(), 'trx_addons_options', true ); $dt = $meta['date_start']; $dt = sprintf( // Translators: Add formatted date to the output $dt < date( 'Y-m-d' ) . ( ! empty( $meta['time_start'] ) ? ' H:i' : '' ) ? esc_html__( 'Started on %s', 'kicker' ) : esc_html__( 'Starting %s', 'kicker' ), date_i18n( get_option( 'date_format' ) . ( ! empty( $meta['time_start'] ) ? ' ' . get_option( 'time_format' ) : '' ), strtotime( $dt . ( ! empty( $meta['time_start'] ) ? ' ' . trim( $meta['time_start'] ) : '' ) ) ) ); } elseif ( defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ) && get_post_type() == TRX_ADDONS_CPT_PLAYERS_PT ) { // Uncomment (remove) next line if you want to show player's birthday in the page title block if ( false ) { $meta = get_post_meta( get_the_ID(), 'trx_addons_options', true ); // Translators: Add formatted date to the output $dt = ! empty( $meta['birthday'] ) ? sprintf( esc_html__( 'Birthday: %s', 'kicker' ), date_i18n( get_option( 'date_format' ), strtotime( $meta['birthday'] ) ) ) : ''; } else { $dt = ''; } } return $dt; } } // Disable strip tags from the price if ( ! function_exists( 'kicker_trx_addons_custom_meta_value_strip_tags' ) ) { // Handler of the add_filter( 'trx_addons_filter_custom_meta_value_strip_tags', 'kicker_trx_addons_custom_meta_value_strip_tags' ); function kicker_trx_addons_custom_meta_value_strip_tags( $keys ) { return is_array( $keys ) ? kicker_array_delete_by_value( $keys, 'price' ) : $keys; } } // Parse layouts in the content if ( ! function_exists( 'kicker_trx_addons_filter_post_content' ) ) { //Handler of the add_filter( 'kicker_filter_post_content', 'kicker_trx_addons_filter_post_content'); function kicker_trx_addons_filter_post_content( $content ) { return apply_filters( 'trx_addons_filter_sc_layout_content', $content ); } } // Check if meta box is allowed if ( ! function_exists( 'kicker_trx_addons_allow_override_options' ) ) { //Handler of the add_filter( 'kicker_filter_allow_override_options', 'kicker_trx_addons_allow_override_options', 10, 2); function kicker_trx_addons_allow_override_options( $allow, $post_type ) { return $allow || ( function_exists( 'trx_addons_extended_taxonomy_get_supported_post_types' ) && in_array( $post_type, trx_addons_extended_taxonomy_get_supported_post_types() ) ) || ( defined( 'TRX_ADDONS_CPT_CARS_PT' ) && in_array( $post_type, array( TRX_ADDONS_CPT_CARS_PT, TRX_ADDONS_CPT_CARS_AGENTS_PT, ) ) ) || ( defined( 'TRX_ADDONS_CPT_COURSES_PT' ) && TRX_ADDONS_CPT_COURSES_PT == $post_type ) || ( defined( 'TRX_ADDONS_CPT_DISHES_PT' ) && TRX_ADDONS_CPT_DISHES_PT == $post_type ) || ( defined( 'TRX_ADDONS_CPT_PORTFOLIO_PT' ) && TRX_ADDONS_CPT_PORTFOLIO_PT == $post_type ) || ( defined( 'TRX_ADDONS_CPT_PROPERTIES_PT' ) && in_array( $post_type, array( TRX_ADDONS_CPT_PROPERTIES_PT, TRX_ADDONS_CPT_AGENTS_PT, ) ) ) || ( defined( 'TRX_ADDONS_CPT_RESUME_PT' ) && TRX_ADDONS_CPT_RESUME_PT == $post_type ) || ( defined( 'TRX_ADDONS_CPT_SERVICES_PT' ) && TRX_ADDONS_CPT_SERVICES_PT == $post_type ) || ( defined( 'TRX_ADDONS_CPT_COMPETITIONS_PT' ) && in_array( $post_type, array( TRX_ADDONS_CPT_COMPETITIONS_PT, TRX_ADDONS_CPT_ROUNDS_PT, TRX_ADDONS_CPT_MATCHES_PT, ) ) ) || ( defined( 'TRX_ADDONS_CPT_TEAM_PT' ) && TRX_ADDONS_CPT_TEAM_PT == $post_type ); } } // Check if theme icons is allowed if ( ! function_exists( 'kicker_trx_addons_allow_theme_icons' ) ) { //Handler of the add_filter( 'kicker_filter_allow_theme_icons', 'kicker_trx_addons_allow_theme_icons', 10, 2); function kicker_trx_addons_allow_theme_icons( $allow, $post_type ) { $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false; return $allow || ( defined( 'TRX_ADDONS_CPT_LAYOUTS_PT' ) && TRX_ADDONS_CPT_LAYOUTS_PT == $post_type ) || ( ! empty( $screen->id ) && ( false !== strpos($screen->id, '_page_trx_addons_options') || in_array( $screen->id, array( 'profile', 'widgets', ) ) ) ); } } // Disable theme-specific fields in the exported options if ( ! function_exists( 'kicker_trx_addons_export_options' ) ) { //Handler of the add_filter( 'trx_addons_filter_export_options', 'kicker_trx_addons_export_options'); function kicker_trx_addons_export_options( $options ) { // ThemeREX Addons if ( ! empty( $options['trx_addons_options'] ) ) { $options['trx_addons_options']['debug_mode'] = 0; $options['trx_addons_options']['api_google'] = ''; $options['trx_addons_options']['api_google_analitics'] = ''; $options['trx_addons_options']['api_google_remarketing'] = ''; $options['trx_addons_options']['demo_enable'] = 0; $options['trx_addons_options']['demo_referer'] = ''; $options['trx_addons_options']['demo_default_url'] = ''; $options['trx_addons_options']['demo_logo'] = ''; $options['trx_addons_options']['demo_post_type'] = ''; $options['trx_addons_options']['demo_taxonomy'] = ''; $options['trx_addons_options']['demo_logo'] = ''; $options['trx_addons_options']['demo_logo'] = ''; unset( $options['trx_addons_options']['themes_market_referals'] ); } return $options; } } // Set related posts and columns for the plugin's output if ( ! function_exists( 'kicker_trx_addons_args_related' ) ) { //Handler of the add_filter( 'trx_addons_filter_args_related', 'kicker_trx_addons_args_related'); function kicker_trx_addons_args_related( $args ) { if ( ! empty( $args['template_args_name'] ) && in_array( $args['template_args_name'], array( 'trx_addons_args_sc_cars', 'trx_addons_args_sc_courses', 'trx_addons_args_sc_dishes', 'trx_addons_args_sc_portfolio', 'trx_addons_args_sc_properties', 'trx_addons_args_sc_services', 'trx_addons_args_sc_team', ) ) ) { $args['posts_per_page'] = (int) kicker_get_theme_option( 'show_related_posts' ) ? kicker_get_theme_option( 'related_posts' ) : 0; $args['columns'] = kicker_get_theme_option( 'related_columns' ); $args['slider'] = (int) kicker_get_theme_option( 'related_slider' ); $args['slides_space'] = kicker_get_theme_option( 'related_slider_space' ); $args['slider_controls'] = kicker_get_theme_option( 'related_slider_controls' ); $args['slider_pagination'] = kicker_get_theme_option( 'related_slider_pagination' ); } return $args; } } // Redirect filter to the plugin if ( ! function_exists( 'kicker_trx_addons_show_related_posts' ) ) { //Handler of the add_filter( 'kicker_filter_show_related_posts', 'kicker_trx_addons_show_related_posts' ); function kicker_trx_addons_show_related_posts( $show ) { return apply_filters( 'trx_addons_filter_show_related_posts', $show ); } } // Return false if related posts must be showed below page if ( ! function_exists( 'kicker_trx_addons_show_related_posts_after_article' ) ) { //Handler of the add_filter( 'trx_addons_filter_show_related_posts_after_article', 'kicker_trx_addons_show_related_posts_after_article' ); function kicker_trx_addons_show_related_posts_after_article( $show ) { return $show && kicker_get_theme_option( 'related_position' ) == 'below_content'; } } // Add 'custom' to the headers types list if ( ! function_exists( 'kicker_trx_addons_list_header_footer_types' ) ) { //Handler of the add_filter( 'kicker_filter_list_header_footer_types', 'kicker_trx_addons_list_header_footer_types'); function kicker_trx_addons_list_header_footer_types( $list = array() ) { if ( kicker_exists_layouts() ) { $list['custom'] = esc_html__( 'Custom', 'kicker' ); } return $list; } } // Add layouts to the headers list if ( ! function_exists( 'kicker_trx_addons_list_header_styles' ) ) { //Handler of the add_filter( 'kicker_filter_list_header_styles', 'kicker_trx_addons_list_header_styles'); function kicker_trx_addons_list_header_styles( $list = array() ) { if ( kicker_exists_layouts() ) { $layouts = kicker_get_list_posts( false, array( 'post_type' => TRX_ADDONS_CPT_LAYOUTS_PT, 'meta_key' => 'trx_addons_layout_type', 'meta_value' => 'header', 'orderby' => 'ID', 'order' => 'asc', 'not_selected' => false, ) ); $new_list = array(); foreach ( $layouts as $id => $title ) { if ( 'none' != $id ) { $new_list[ 'header-custom-' . intval( $id ) ] = $title; } } $list = kicker_array_merge( $new_list, $list ); } return $list; } } // Add layouts to the footers list if ( ! function_exists( 'kicker_trx_addons_list_footer_styles' ) ) { //Handler of the add_filter( 'kicker_filter_list_footer_styles', 'kicker_trx_addons_list_footer_styles'); function kicker_trx_addons_list_footer_styles( $list = array() ) { if ( kicker_exists_layouts() ) { $layouts = kicker_get_list_posts( false, array( 'post_type' => TRX_ADDONS_CPT_LAYOUTS_PT, 'meta_key' => 'trx_addons_layout_type', 'meta_value' => 'footer', 'orderby' => 'ID', 'order' => 'asc', 'not_selected' => false, ) ); $new_list = array(); foreach ( $layouts as $id => $title ) { if ( 'none' != $id ) { $new_list[ 'footer-custom-' . intval( $id ) ] = $title; } } $list = kicker_array_merge( $new_list, $list ); } return $list; } } // Add layouts to the sidebars list if ( ! function_exists( 'kicker_trx_addons_list_sidebar_styles' ) ) { //Handler of the add_filter( 'kicker_filter_list_sidebar_styles', 'kicker_trx_addons_list_sidebar_styles'); function kicker_trx_addons_list_sidebar_styles( $list = array() ) { if ( kicker_exists_layouts() ) { $layouts = kicker_get_list_posts( false, array( 'post_type' => TRX_ADDONS_CPT_LAYOUTS_PT, 'meta_key' => 'trx_addons_layout_type', 'meta_value' => 'sidebar', 'orderby' => 'ID', 'order' => 'asc', 'not_selected' => false, ) ); $new_list = array(); foreach ( $layouts as $id => $title ) { if ( 'none' != $id ) { $new_list[ 'sidebar-custom-' . intval( $id ) ] = $title; } } $list = kicker_array_merge( $new_list, $list ); } return $list; } } // Add layouts to the blog styles list if ( ! function_exists( 'kicker_trx_addons_list_blog_styles' ) ) { //Handler of the add_filter( 'kicker_filter_list_blog_styles', 'kicker_trx_addons_list_blog_styles', 10, 3 ); function kicker_trx_addons_list_blog_styles( $list, $filter, $need_custom = true ) { static $new_list = array(); if ( $need_custom && kicker_exists_layouts() ) { if ( empty( $new_list[ $filter ] ) ) { $new_list[ $filter ] = array(); $custom_blog_use_id = false; // Use post ID or sanitized post title as part XXX of the layout key 'blog-custom-XXX_columns' $layouts = kicker_get_list_posts( false, array( 'post_type' => TRX_ADDONS_CPT_LAYOUTS_PT, 'meta_key' => 'trx_addons_layout_type', 'meta_value' => 'blog', 'orderby' => 'title', 'order' => 'asc', 'not_selected' => false, ) ); foreach ( $layouts as $id => $title ) { if ( $filter == 'arh' ) { $from = 1; $to = 1; $meta = get_post_meta( $id, 'trx_addons_options', true ); if ( ! empty( $meta['columns_allowed'] ) ) { $parts = explode( ',', $meta['columns_allowed'] ); if ( count($parts) == 1) { $to = min( 6, max( $from, (int) $parts[0] ) ); } else { $from = min( 6, max( 1, (int) $parts[0] ) ); $to = min( 6, max( $from, (int) $parts[1] ) ); } } $new_row = $from < $to; for ( $i = $from; $i <= $to; $i++ ) { $new_list[ $filter ][ 'blog-custom-' . ( $custom_blog_use_id ? (int) $id : sanitize_title( $title ) ) . ( $from < $to ? "_{$i}" : '') ] = array( 'title' => $from < $to // Translators: Make blog style title: "Layout name /X columns/" ? sprintf( _n( '%1$s /%2$d column/', '%1$s /%2$d columns/', $i, 'kicker'), $title, $i ) : $title, 'icon' => 'images/theme-options/blog-style/custom.png', 'new_row' => $new_row, ); $new_row = false; } } else { $new_list[ $filter ][ 'blog-custom-' . ( $custom_blog_use_id ? (int) $id : sanitize_title( $title ) ) ] = $title; } } } if ( ! empty( $new_list[ $filter ] ) && count( $new_list[ $filter ] ) > 0 ) { $list = kicker_array_merge( $list, $new_list[ $filter ] ); } } return $list; } } // Return id of the custom header or footer for current mode if ( ! function_exists( 'kicker_get_custom_layout_id' ) ) { function kicker_get_custom_layout_id( $type, $layout_style = '' ) { $layout_id = 0; if ( empty( $layout_style ) ) { $layout_style = kicker_get_theme_option( "{$type}_style" ); } $layout_prefix = ''; if ( strpos( $layout_style, "{$type}-custom-" ) !== false ) { $layout_prefix = "{$type}-custom-"; $layout_cpt = defined( 'TRX_ADDONS_CPT_LAYOUTS_PT' ) ? TRX_ADDONS_CPT_LAYOUTS_PT : 'cpt_layouts'; } else if ( defined( 'KICKER_FSE_TEMPLATE_PART_PT' ) && strpos( $layout_style, "{$type}-fse-template-" ) !== false ) { $layout_prefix = "{$type}-fse-template-"; $layout_cpt = defined( 'KICKER_FSE_TEMPLATE_PART_PT' ) ? KICKER_FSE_TEMPLATE_PART_PT : 'wp_template_part'; } if ( ! empty( $layout_prefix ) ) { $layout_id = str_replace( $layout_prefix, '', $layout_style ); if ( strpos( $layout_id, '_' ) !== false ) { $parts = explode( '_', $layout_id ); $layout_id = $parts[0]; } if ( 0 == (int)$layout_id ) { $post_id = kicker_get_post_id( array( 'name' => $layout_id, 'post_type' => $layout_cpt, ) ); if ( (int)$post_id > 0 ) { $layout_id = $post_id; } } if ( (int)$layout_id > 0 ) { $layout_id = apply_filters( 'kicker_filter_get_translated_layout', $layout_id ); } } return $layout_id; } } if ( ! function_exists( 'kicker_get_custom_header_id' ) ) { function kicker_get_custom_header_id() { static $layout_id = -1; if ( -1 == $layout_id && kicker_get_theme_option( 'header_type' ) == 'custom' ) { $layout_id = kicker_get_custom_layout_id( 'header' ); } return $layout_id; } } if ( ! function_exists( 'kicker_get_custom_footer_id' ) ) { function kicker_get_custom_footer_id() { static $layout_id = -1; if ( -1 == $layout_id && kicker_get_theme_option( 'footer_type' ) == 'custom' ) { $layout_id = kicker_get_custom_layout_id( 'footer' ); } return $layout_id; } } if ( ! function_exists( 'kicker_get_custom_sidebar_id' ) ) { function kicker_get_custom_sidebar_id() { static $layout_id = -1; if ( -1 == $layout_id && kicker_get_theme_option( 'sidebar_type' ) == 'custom' ) { $layout_id = kicker_get_custom_layout_id( 'sidebar' ); } return $layout_id; } } if ( ! function_exists( 'kicker_get_custom_blog_id' ) ) { function kicker_get_custom_blog_id( $style ) { static $layout_id = array(); if ( empty( $layout_id[ $style ] ) ) { $layout_id[ $style ] = kicker_get_custom_layout_id( 'blog', $style ); } return $layout_id[ $style ]; } } // Return meta data from custom layout if ( ! function_exists( 'kicker_get_custom_layout_meta' ) ) { function kicker_get_custom_layout_meta( $id ) { static $meta = array(); if ( empty( $meta[ $id ] ) ) { $meta[ $id ] = get_post_meta( $id, 'trx_addons_options', true ); } return $meta[ $id ]; } } // Add theme-specific layouts to the list if ( ! function_exists( 'kicker_trx_addons_default_layouts' ) ) { //Handler of the add_filter( 'trx_addons_filter_default_layouts', 'kicker_trx_addons_default_layouts'); function kicker_trx_addons_default_layouts( $default_layouts = array() ) { if ( kicker_storage_isset( 'trx_addons_default_layouts' ) ) { $layouts = kicker_storage_get( 'trx_addons_default_layouts' ); } else { include_once kicker_get_file_dir( 'theme-specific/trx_addons-layouts.php' ); if ( ! isset( $layouts ) || ! is_array( $layouts ) ) { $layouts = array(); } else if ( function_exists( 'trx_addons_url_replace' ) ) { // Replace demo-site urls with current site url $layouts = trx_addons_url_replace( kicker_storage_get( 'theme_demo_url' ), get_home_url(), $layouts ); } kicker_storage_set( 'trx_addons_default_layouts', $layouts ); } if ( count( $layouts ) > 0 ) { $default_layouts = array_merge( $default_layouts, $layouts ); } return $default_layouts; } } // Collect created or updated layouts if ( ! function_exists( 'kicker_trx_addons_create_layout' ) ) { //Handler of the add_action( 'trx_addons_action_create_layout', 'kicker_trx_addons_create_layout', 10, 5 ); function kicker_trx_addons_create_layout( $old_slug, $layout, $args, $new_id, $exists ) { if ( empty( $new_id ) ) return; global $KICKER_STORAGE; if ( ! isset( $KICKER_STORAGE['update_layouts'] ) ) { $KICKER_STORAGE['update_layouts'] = array(); } $parts = explode( '_', $old_slug ); $type = $parts[0]; $old_id = ! empty( $parts[1] ) ? (int) $parts[1] : 0; if ( $old_id > 0 && $old_id != $new_id ) { $KICKER_STORAGE['update_layouts']["{$type}-custom-{$old_id}"] = "{$type}-custom-{$new_id}"; } } } // Replace created or updated layouts in options if ( ! function_exists( 'kicker_trx_addons_create_layouts' ) ) { //Handler of the add_action( 'trx_addons_action_create_layouts', 'kicker_trx_addons_create_layouts', 10, 1 ); function kicker_trx_addons_create_layouts( $layouts ) { global $KICKER_STORAGE; if ( isset( $KICKER_STORAGE['update_layouts'] ) ) { $options_name = sprintf( 'theme_mods_%s', get_stylesheet() ); $options = get_option( $options_name ); $changed = false; if ( ! empty( $options ) && is_array( $options ) ) { foreach ( $options as $k => $v ) { if ( is_string( $v ) ) { foreach ( $KICKER_STORAGE['update_layouts'] as $old => $new ) { if ( $v == $old ) { $options[ $k ] = $new; $changed = true; } } } } if ( $changed ) { update_option( $options_name, $options ); } } } } } // Add theme-specific components to the plugin's options if ( ! function_exists( 'kicker_trx_addons_default_components' ) ) { //Handler of the add_filter( 'trx_addons_filter_load_options', 'kicker_trx_addons_default_components'); function kicker_trx_addons_default_components( $options = array() ) { if ( empty( $options['components_present'] ) ) { if ( kicker_storage_isset( 'trx_addons_default_components' ) ) { $components = kicker_storage_get( 'trx_addons_default_components' ); } else { include_once kicker_get_file_dir( 'theme-specific/trx_addons-components.php' ); if ( ! isset( $components ) || ! is_array( $components ) ) { $components = array(); } kicker_storage_set( 'trx_addons_default_components', $components ); } $options = is_array( $options ) && count( $components ) > 0 ? array_merge( $options, $components ) : $components; } // Turn on API of the theme required plugins $plugins = kicker_storage_get( 'required_plugins' ); foreach ( $plugins as $p => $v ) { //Disable check, because some components can be added after the plugin's options are saved if ( true || isset( $options[ "components_api_{$p}" ] ) ) { $options[ "components_api_{$p}" ] = 1; } } return $options; } } // Add theme-specific options to the post's options if ( ! function_exists( 'kicker_trx_addons_override_options' ) ) { //Handler of the add_filter( 'trx_addons_filter_override_options', 'kicker_trx_addons_override_options'); function kicker_trx_addons_override_options( $options = array() ) { return apply_filters( 'kicker_filter_override_options', $options ); } } // Enqueue custom styles if ( ! function_exists( 'kicker_trx_addons_layouts_styles' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_layouts_styles' ); function kicker_trx_addons_layouts_styles() { if ( ! kicker_exists_trx_addons() ) { $kicker_url = kicker_get_file_url( 'plugins/trx_addons/layouts/layouts.css' ); if ( '' != $kicker_url ) { wp_enqueue_style( 'kicker-trx-addons-layouts', $kicker_url, array(), null ); } $kicker_url = kicker_get_file_url( 'plugins/trx_addons/layouts/layouts.responsive.css' ); if ( '' != $kicker_url ) { wp_enqueue_style( 'kicker-trx-addons-layouts-responsive', $kicker_url, array(), null, kicker_media_for_load_css_responsive( 'trx-addons-layouts' ) ); } } } } // Enqueue styles for frontend if ( ! function_exists( 'kicker_trx_addons_frontend_scripts' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_frontend_scripts', 1100 ); function kicker_trx_addons_frontend_scripts() { if ( kicker_is_on( kicker_get_theme_option( 'debug_mode' ) ) ) { $kicker_url = kicker_get_file_url( 'plugins/trx_addons/trx_addons.css' ); if ( '' != $kicker_url ) { wp_enqueue_style( 'kicker-trx-addons', $kicker_url, array(), null ); } $kicker_url = kicker_get_file_url( 'plugins/trx_addons/trx_addons.js' ); if ( '' != $kicker_url ) { wp_enqueue_script( 'kicker-trx-addons', $kicker_url, array( 'jquery' ), null, true ); } } } } // Enqueue responsive styles for frontend if ( ! function_exists( 'kicker_trx_addons_responsive_styles' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_responsive_styles', 2000 ); function kicker_trx_addons_responsive_styles() { if ( kicker_is_on( kicker_get_theme_option( 'debug_mode' ) ) ) { $kicker_url = kicker_get_file_url( 'plugins/trx_addons/trx_addons-responsive.css' ); if ( '' != $kicker_url ) { wp_enqueue_style( 'kicker-trx-addons-responsive', $kicker_url, array(), null, kicker_media_for_load_css_responsive( 'trx-addons' ) ); } } } } // Enqueue separate styles for frontend if ( ! function_exists( 'kicker_trx_addons_frontend_scripts_separate' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_frontend_scripts_separate', 1100 ); //Handler of the add_action( 'trx_addons_action_load_scripts_front_xxx', 'kicker_trx_addons_frontend_scripts_separate', 10, 1 ); function kicker_trx_addons_frontend_scripts_separate( $force = false ) { static $loaded = array(); if ( apply_filters( 'kicker_filters_separate_trx_addons_styles', false ) ) { // If current action is 'trx_addons_action_load_scripts_front_xxx' - load styles for the single component if ( current_action() != 'wp_enqueue_scripts' ) { $component = str_replace( 'trx_addons_action_load_scripts_front_', '', current_action() ); if ( empty( $loaded[ $component ] ) && $force === true ) { $loaded[ $component ] = true; $file = kicker_esc( str_replace( '_', '-', $component ) ); $kicker_url = kicker_get_file_url( sprintf( 'plugins/trx_addons/components/%s.css', $file ) ); if ( '' != $kicker_url ) { wp_enqueue_style( sprintf( 'kicker-trx-addons-%s', $file ), $kicker_url, array(), null ); } } // Else if current action is 'wp_enqueue_scripts' - check all components } else { $components = kicker_trx_addons_get_separate_components(); foreach( $components as $component ) { if ( empty( $loaded[ $component ] ) && kicker_need_frontend_scripts( $component ) ) { $loaded[ $component ] = true; $file = kicker_esc( str_replace( '_', '-', $component ) ); $kicker_url = kicker_get_file_url( sprintf( 'plugins/trx_addons/components/%s.css', $file ) ); if ( '' != $kicker_url ) { wp_enqueue_style( sprintf( 'kicker-trx-addons-%s', $file ), $kicker_url, array(), null ); } } } } } } } // Enqueue separate styles for frontend if ( ! function_exists( 'kicker_trx_addons_responsive_styles_separate' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'kicker_trx_addons_responsive_styles_separate', 2000 ); //Handler of the add_action( 'trx_addons_action_load_scripts_front_xxx', 'kicker_trx_addons_responsive_styles_separate', 10, 1 ); function kicker_trx_addons_responsive_styles_separate( $force = false ) { static $loaded = array(); if ( apply_filters( 'kicker_filters_separate_trx_addons_styles', false ) ) { // If current action is 'trx_addons_action_load_scripts_front_xxx' - load styles for the single component if ( current_action() != 'wp_enqueue_scripts' ) { $component = str_replace( 'trx_addons_action_load_scripts_front_', '', current_action() ); if ( empty( $loaded[ $component ] ) && $force === true ) { $loaded[ $component ] = true; $file = kicker_esc( str_replace( '_', '-', $component ) ); $kicker_url = kicker_get_file_url( sprintf( 'plugins/trx_addons/components/%s-responsive.css', $file ) ); if ( '' != $kicker_url ) { wp_enqueue_style( sprintf( 'kicker-trx-addons-%s-responsive', $file ), $kicker_url, array(), null ); } } // Else if current action is 'wp_enqueue_scripts' - check all components } else { $components = kicker_trx_addons_get_separate_components(); foreach( $components as $component ) { if ( empty( $loaded[ $component ] ) && kicker_need_frontend_scripts( $component ) ) { $loaded[ $component ] = true; $file = kicker_esc( str_replace( '_', '-', $component ) ); $kicker_url = kicker_get_file_url( sprintf( 'plugins/trx_addons/components/%s-responsive.css', $file ) ); if ( '' != $kicker_url ) { wp_enqueue_style( sprintf( 'kicker-trx-addons-%s-responsive', $file ), $kicker_url, array(), null ); } } } } } } } // Merge custom styles if ( ! function_exists( 'kicker_trx_addons_merge_styles' ) ) { //Handler of the add_filter( 'kicker_filter_merge_styles', 'kicker_trx_addons_merge_styles'); function kicker_trx_addons_merge_styles( $list ) { $list[ 'plugins/trx_addons/trx_addons.css' ] = true; if ( apply_filters( 'kicker_filters_separate_trx_addons_styles', false ) ) { $components = kicker_trx_addons_get_separate_components(); foreach( $components as $component ) { $list[ sprintf( 'plugins/trx_addons/components/%s.css', kicker_esc( str_replace( '_', '-', $component ) ) ) ] = false; } } return $list; } } // Merge responsive styles if ( ! function_exists( 'kicker_trx_addons_merge_styles_responsive' ) ) { //Handler of the add_filter('kicker_filter_merge_styles_responsive', 'kicker_trx_addons_merge_styles_responsive'); function kicker_trx_addons_merge_styles_responsive( $list ) { $list[ 'plugins/trx_addons/trx_addons-responsive.css' ] = true; if ( apply_filters( 'kicker_filters_separate_trx_addons_styles', false ) ) { $components = kicker_trx_addons_get_separate_components(); foreach( $components as $component ) { $list[ sprintf( 'plugins/trx_addons/components/%s-responsive.css', kicker_esc( str_replace( '_', '-', $component ) ) ) ] = false; } } return $list; } } // Merge custom scripts if ( ! function_exists( 'kicker_trx_addons_merge_scripts' ) ) { //Handler of the add_filter('kicker_filter_merge_scripts', 'kicker_trx_addons_merge_scripts'); function kicker_trx_addons_merge_scripts( $list ) { $list[ 'plugins/trx_addons/trx_addons.js' ] = true; return $list; } } // Add theme-specific vars to the SASS files if ( ! function_exists( 'kicker_trx_addons_sass_import' ) ) { //Handler of the add_filter( 'trx_addons_filter_sass_import','kicker_trx_addons_sass_import', 10, 2); function kicker_trx_addons_sass_import( $output = '', $file = '' ) { if ( strpos( $file, 'vars.scss' ) !== false ) { $output .= "\n" . kicker_fgc( kicker_get_file_dir( 'css/_theme-vars.scss' ) ) . "\n" . kicker_fgc( kicker_get_file_dir( 'css/_skin-vars.scss' ) ) . "\n"; } return $output; } } // Enqueue TweenMax on the single posts if ( ! function_exists( 'kicker_trx_addons_load_tweenmax' ) ) { //Handler of the add_filter( 'trx_addons_filter_load_tweenmax', 'kicker_trx_addons_load_tweenmax' ); function kicker_trx_addons_load_tweenmax( $need ) { return $need || ( kicker_is_singular( 'post' ) && kicker_get_theme_option( 'single_parallax' ) > 0 ); } } // Add styles to the list to future load if ( ! function_exists( 'kicker_trx_addons_load_frontend_scripts' ) ) { //Handler of the add_action( 'trx_addons_action_load_scripts_front', 'kicker_trx_addons_load_frontend_scripts', 0, 2 ); function kicker_trx_addons_load_frontend_scripts( $force = false, $slug = '' ) { kicker_storage_set_array( 'enqueue_list', $slug, 1 ); } } // Check if the optimization of the loading css and js is enabled if ( ! function_exists( 'kicker_optimize_css_and_js_loading' ) ) { function kicker_optimize_css_and_js_loading() { static $optimize = -1; if ( $optimize == -1 ) { $optimize = function_exists( 'trx_addons_get_option' ) ? ! trx_addons_is_off( trx_addons_get_option( 'optimize_css_and_js_loading', 'none' ) ) : false; } return $optimize; } } // Check if need to load styles if ( ! function_exists( 'kicker_need_frontend_scripts' ) ) { function kicker_need_frontend_scripts( $slug ) { return kicker_optimize_css_and_js_loading() ? kicker_storage_isset( 'enqueue_list', $slug ) : kicker_is_on( kicker_get_theme_option( 'debug_mode' ) ); } } // Return list of slugs of ThemeREX components to separate load if ( ! function_exists( 'kicker_trx_addons_get_separate_components' ) ) { function kicker_trx_addons_get_separate_components() { return apply_filters( 'kicker_filters_separate_trx_addons_styles_list', array() ); } } // Return a selector of the tag with a page background if ( ! function_exists( 'kicker_trx_addons_get_page_background_selector' ) ) { //Handler of add_filter( 'trx_addons_filter_page_background_selector', 'kicker_trx_addons_get_page_background_selector' ); function kicker_trx_addons_get_page_background_selector( $selector = '' ) { return 'body:not(.body_style_boxed) .page_content_wrap,body.body_style_boxed .page_wrap'; } } // Plugin API - theme-specific wrappers for plugin functions //------------------------------------------------------------------------ // Debug functions wrappers if ( ! function_exists( 'ddo' ) ) { function ddo( $obj, $level = -1 ) { echo '<pre>' . esc_html( var_export( $obj, true ) ) . '</pre>'; } } if ( ! function_exists( 'dcl' ) ) { function dcl( $msg, $level = -1 ) { echo '<pre>' . esc_html( $msg ) . '</pre>'; } } if ( ! function_exists( 'dco' ) ) { function dco( $obj, $level = -1 ) { ddo( $obj ); } } if ( ! function_exists('dcp') ) { function dcp( $var ) { ob_start(); print_r( $var ); $output = ob_get_contents(); ob_end_clean(); echo '<pre>' . esc_html( preg_replace( '/[\s]*\([\s]*\)/', '()', str_replace( "\n\n", "\n", $output ) ) ) . '</pre>'; } } if ( ! function_exists( 'dcs' ) ) { function dcs( $level = -1 ) { $s = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS, $level > 0 ? $level : 0 ); dco( $s, $level ); } } if ( ! function_exists( 'dfo' ) ) { function dfo( $obj, $level = -1 ) {} } if ( ! function_exists( 'dfl' ) ) { function dfl( $msg, $level = -1 ) {} } // Check if layouts components are showed or set new state if ( ! function_exists( 'kicker_sc_layouts_showed' ) ) { function kicker_sc_layouts_showed( $name, $val = null ) { if ( function_exists( 'trx_addons_sc_layouts_showed' ) ) { if ( null !== $val ) { trx_addons_sc_layouts_showed( $name, $val ); } else { return trx_addons_sc_layouts_showed( $name ); } } else { if ( null !== $val ) { kicker_storage_set_array( 'sc_layouts_components', $name, $val ); } else { return kicker_storage_get_array( 'sc_layouts_components', $name ); } } } } // Return image size multiplier if ( ! function_exists( 'kicker_get_retina_multiplier' ) ) { function kicker_get_retina_multiplier( $force_retina = 0 ) { $mult = function_exists( 'trx_addons_get_retina_multiplier' ) ? trx_addons_get_retina_multiplier( $force_retina ) : max( 1, $force_retina ); return max( 1, $mult ); } } // Return slider layout if ( ! function_exists( 'kicker_get_slider_layout' ) ) { function kicker_get_slider_layout( $args, $images = array() ) { return function_exists( 'trx_addons_get_slider_layout' ) ? trx_addons_get_slider_layout( $args, $images ) : ''; } } // Return slider wrapper first part if ( ! function_exists( 'kicker_get_slider_wrap_start' ) ) { function kicker_get_slider_wrap_start( $sc, $args ) { if ( function_exists( 'trx_addons_sc_show_slider_wrap_start' ) ) { trx_addons_sc_show_slider_wrap_start( $sc, $args ); } } } // Return slider wrapper last part if ( ! function_exists( 'kicker_get_slider_wrap_end' ) ) { function kicker_get_slider_wrap_end( $sc, $args ) { if ( function_exists( 'trx_addons_sc_show_slider_wrap_end' ) ) { trx_addons_sc_show_slider_wrap_end( $sc, $args ); } } } // Return video frame layout if ( ! function_exists( 'kicker_get_video_layout' ) ) { function kicker_get_video_layout( $args ) { return function_exists( 'trx_addons_get_video_layout' ) ? trx_addons_get_video_layout( $args ) : ''; } } // Include theme-specific blog style content if ( ! function_exists( 'kicker_trx_addons_sc_blogger_template' ) ) { //Handler of the add_filter( 'trx_addons_filter_sc_blogger_template', 'kicker_trx_addons_sc_blogger_template', 10, 2); function kicker_trx_addons_sc_blogger_template( $result, $args ) { if ( ! $result ) { $tpl = kicker_blog_item_get_template( $args['type'] ); if ( '' != $tpl ) { $tpl = kicker_get_file_dir( $tpl . '.php' ); if ( '' != $tpl ) { set_query_var( 'kicker_template_args', $args ); include $tpl; set_query_var( 'kicker_template_args', false ); $result = true; } } } return $result; } } // Redirect theme-specific action 'kicker_action_before_featured' to the plugin if ( ! function_exists( 'kicker_trx_addons_before_featured_image' ) ) { //Handler of the add_action( 'kicker_action_before_featured', 'kicker_trx_addons_before_featured_image' ); function kicker_trx_addons_before_featured_image() { do_action( 'trx_addons_action_before_featured' ); } } // Redirect theme-specific action 'kicker_action_after_featured' to the plugin if ( ! function_exists( 'kicker_trx_addons_after_featured_image' ) ) { //Handler of the add_action( 'kicker_action_after_featured', 'kicker_trx_addons_after_featured_image' ); function kicker_trx_addons_after_featured_image() { do_action( 'trx_addons_action_after_featured' ); } } // Return theme specific layout of the featured image block if ( ! function_exists( 'kicker_trx_addons_featured_image' ) ) { //Handler of the add_filter( 'trx_addons_filter_featured_image', 'kicker_trx_addons_featured_image', 10, 2); function kicker_trx_addons_featured_image( $processed = false, $args = array() ) { $args['hover'] = kicker_trx_addons_featured_hover( ! isset( $args['hover'] ) ? '!inherit' : $args['hover'] ); kicker_show_post_featured( $args ); return true; } } // Return theme specific hover for the featured image block if ( ! function_exists( 'kicker_trx_addons_featured_hover' ) ) { //Handler of the add_filter( 'trx_addons_filter_featured_hover', 'kicker_trx_addons_featured_hover', 10, 2); function kicker_trx_addons_featured_hover( $hover, $sc = '' ) { $hover = '' == $hover ? '' : ( '!' == $hover[0] && '!inherit' != $hover ? substr( $hover, 1 ) : kicker_get_theme_option( 'image_hover' ) ); return $hover; } } // Redirect filter 'kicker_filter_post_featured_classes' to the plugin if ( ! function_exists( 'kicker_trx_addons_post_featured_classes' ) ) { //Handler of the add_filter( 'kicker_filter_post_featured_classes', 'kicker_trx_addons_post_featured_classes', 10, 3 ); function kicker_trx_addons_post_featured_classes( $classes, $args, $mode ) { return apply_filters( 'trx_addons_filter_post_featured_classes', $classes, $args, $mode ); } } // Redirect filter 'kicker_filter_post_featured_data' to the plugin if ( ! function_exists( 'kicker_trx_addons_post_featured_data' ) ) { //Handler of the add_filter( 'kicker_filter_post_featured_data', 'kicker_trx_addons_post_featured_data', 10, 3 ); function kicker_trx_addons_post_featured_data( $data, $args, $mode ) { return apply_filters( 'trx_addons_filter_post_featured_data', $data, $args, $mode ); } } // Redirect filter 'kicker_filter_args_featured' to the plugin if ( ! function_exists( 'kicker_trx_addons_args_featured' ) ) { //Handler of the add_filter( 'kicker_filter_args_featured', 'kicker_trx_addons_args_featured', 10, 3 ); function kicker_trx_addons_args_featured( $args, $mode, $template_args ) { return apply_filters( 'trx_addons_filter_args_featured', $args, $mode, $template_args ); } } // Return list of plugin specific hovers if ( ! function_exists( 'kicker_trx_addons_custom_hover_list' ) ) { //Handler of the add_filter( 'kicker_filter_list_hovers', 'kicker_trx_addons_custom_hover_list' ); function kicker_trx_addons_custom_hover_list( $list ) { return kicker_array_merge( $list, apply_filters( 'trx_addons_filter_custom_hover_list', array() ) ); } } // Add plugin specific hover icons for the featured image block if ( ! function_exists( 'kicker_trx_addons_custom_hover_icons' ) ) { //Handler of the add_action( 'kicker_action_custom_hover_icons', 'kicker_trx_addons_custom_hover_icons', 10, 2 ); function kicker_trx_addons_custom_hover_icons( $args = array(), $hover = '' ) { do_action( 'trx_addons_action_custom_hover_icons', $args, $hover ); } } // Add theme specific hover for the featured image block if ( ! function_exists( 'kicker_trx_addons_add_hover_icons' ) ) { //Handler of the add_filter( 'trx_addons_action_add_hover_icons', 'kicker_trx_addons_add_hover_icons', 10, 2); function kicker_trx_addons_add_hover_icons( $hover, $args = array() ) { do_action( 'kicker_action_add_hover_icons', $hover, $args ); } } // Return list of theme-specific hovers if ( ! function_exists( 'kicker_trx_addons_get_list_sc_image_hover' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_list_sc_image_hover', 'kicker_trx_addons_get_list_sc_image_hover' ); function kicker_trx_addons_get_list_sc_image_hover( $list ) { $list = array_merge( array( 'inherit' => esc_html__('Inherit', 'kicker'), 'none' => esc_html__('No hover', 'kicker'), ), kicker_get_list_hovers() ); return $list; } } // Remove some thumb-sizes from the ThemeREX Addons list if ( ! function_exists( 'kicker_trx_addons_add_thumb_sizes' ) ) { //Handler of the add_filter( 'trx_addons_filter_add_thumb_names', 'kicker_trx_addons_add_thumb_sizes'); //Handler of the add_filter( 'trx_addons_filter_add_thumb_sizes', 'kicker_trx_addons_add_thumb_sizes'); function kicker_trx_addons_add_thumb_sizes( $list = array() ) { if ( is_array( $list ) ) { $thumb_sizes = kicker_storage_get( 'theme_thumbs' ); foreach ( $thumb_sizes as $v ) { if ( ! empty( $v['subst'] ) ) { if ( isset( $list[ $v['subst'] ] ) ) { unset( $list[ $v['subst'] ] ); } if ( isset( $list[ $v['subst'] . '-@retina' ] ) ) { unset( $list[ $v['subst'] . '-@retina' ] ); } } } } return $list; } } // and replace removed styles with theme-specific thumb size if ( ! function_exists( 'kicker_trx_addons_get_thumb_size' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_thumb_size', 'kicker_trx_addons_get_thumb_size'); function kicker_trx_addons_get_thumb_size( $thumb_size = '' ) { $thumb_sizes = kicker_storage_get( 'theme_thumbs' ); foreach ( $thumb_sizes as $k => $v ) { if ( strpos( $thumb_size, $v['subst'] ) !== false ) { $thumb_size = str_replace( $thumb_size, $v['subst'], $k ); break; } } return $thumb_size; } } // Return theme-specific video width if ( ! function_exists( 'kicker_trx_addons_video_width' ) ) { //Handler of the add_filter( 'trx_addons_filter_video_width', 'kicker_trx_addons_video_width', 10, 2 ); function kicker_trx_addons_video_width( $width, $type = 'theme' ) { if ( $type == 'theme' ) { $width = kicker_get_content_width(); } return $width; } } // Return theme-specific video size ( width = page - sidebar - gap, height = width / 16 * 9 ) if ( ! function_exists( 'kicker_trx_addons_video_dimensions' ) ) { //Handler of the add_filter( 'trx_addons_filter_video_dimensions', 'kicker_trx_addons_video_dimensions', 10, 2 ); function kicker_trx_addons_video_dimensions( $dim, $ratio = '16:9' ) { if ( $ratio == '16:9' ) { $parts = explode( ':', apply_filters( 'kicker_filter_video_ratio', $ratio ) ); $dim['width'] = kicker_get_content_width(); $dim['height'] = round( $dim['width'] / $parts[0] * $parts[1] ); } return apply_filters( 'kicker_filter_video_dimensions', $dim, $ratio ); } } // If inside "Video list" - reduce dimensions, because controller is present if ( ! function_exists( 'kicker_trx_addons_video_dimensions_in_video_list' ) ) { //Handler of the add_filter( 'kicker_filter_video_dimensions', 'kicker_trx_addons_video_dimensions_in_video_list', 10, 2 ); function kicker_trx_addons_video_dimensions_in_video_list( $dim, $ratio = '16:9' ) { // If inside "Video list" - reduce dimensions, because controller is present if ( $ratio == '16:9' && function_exists( 'trx_addons_sc_stack_check' ) && trx_addons_sc_stack_check('trx_widget_video_list') ) { $koef = max( 0.5, min( 1, apply_filters( 'kicker_filter_video_list_size_koef', 0.6667 ) ) ); $dim['width'] = round( $dim['width'] * $koef ); $dim['height'] = round( $dim['height'] * $koef ); } return $dim; } } // Return theme specific 'no-image' picture if ( ! function_exists( 'kicker_trx_addons_no_image' ) ) { //Handler of the add_filter( 'trx_addons_filter_no_image', 'kicker_trx_addons_no_image', 10, 2); function kicker_trx_addons_no_image( $no_image = '', $need = false ) { return kicker_get_no_image( $no_image, $need ); } } // Return theme-specific icons if ( ! function_exists( 'kicker_trx_addons_get_list_icons_classes' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_list_icons_classes', 'kicker_trx_addons_get_list_icons_classes', 10, 2 ); function kicker_trx_addons_get_list_icons_classes( $list, $prepend_inherit ) { return in_array( kicker_get_theme_setting( 'icons_source' ), array( 'theme', 'both' ) ) ? kicker_get_list_icons( 'icons', $prepend_inherit ) : $list; } } // Remove 'icon-' from the name if ( ! function_exists( 'kicker_trx_addons_clear_icon_name' ) ) { //Handler of the add_filter( 'trx_addons_filter_clear_icon_name', 'kicker_trx_addons_clear_icon_name' ); function kicker_trx_addons_clear_icon_name( $icon ) { return substr( $icon, 0, 5 ) == 'icon-' ? substr( $icon, 5 ) : $icon; } } // Return theme-specific accent color if ( ! function_exists( 'kicker_trx_addons_get_theme_accent_color' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_theme_accent_color', 'kicker_trx_addons_get_theme_accent_color' ); function kicker_trx_addons_get_theme_accent_color( $color ) { return kicker_get_scheme_color( 'text_link' ); } } // Return theme-specific bg color if ( ! function_exists( 'kicker_trx_addons_get_theme_bg_color' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_theme_bg_color', 'kicker_trx_addons_get_theme_bg_color' ); function kicker_trx_addons_get_theme_bg_color( $color ) { return kicker_get_scheme_color( 'bg_color' ); } } // Return links to the social profiles if ( ! function_exists( 'kicker_get_socials_links' ) ) { function kicker_get_socials_links( $style = 'icons' ) { return function_exists( 'trx_addons_get_socials_links' ) ? trx_addons_get_socials_links( $style ) : ''; } } // Return links to share post if ( ! function_exists( 'kicker_get_share_links' ) ) { function kicker_get_share_links( $args = array() ) { return function_exists( 'trx_addons_get_share_links' ) ? trx_addons_get_share_links( $args ) : ''; } } // Display links to share post if ( ! function_exists( 'kicker_show_share_links' ) ) { function kicker_show_share_links( $args = array() ) { if ( function_exists( 'trx_addons_get_share_links' ) ) { $args['echo'] = true; trx_addons_get_share_links( $args ); } } } // Return post icon if ( ! function_exists( 'kicker_get_post_icon' ) ) { function kicker_get_post_icon( $post_id = 0 ) { return function_exists( 'trx_addons_get_post_icon' ) ? trx_addons_get_post_icon( $post_id ) : ''; } } // Return image from the term if ( ! function_exists( 'kicker_get_term_image' ) ) { function kicker_get_term_image( $term_id = 0 ) { return function_exists( 'trx_addons_get_term_image' ) ? trx_addons_get_term_image( $term_id ) : ''; } } // Return small image from the term if ( ! function_exists( 'kicker_get_term_image_small' ) ) { function kicker_get_term_image_small( $term_id = 0 ) { return function_exists( 'trx_addons_get_term_image_small' ) ? trx_addons_get_term_image_small( $term_id ) : ''; } } // Enable/Disable animation effects on mobile devices if ( ! function_exists( 'kicker_trx_addons_disable_animation_on_mobile' ) ) { // Handler of the add_filter( 'trx_addons_filter_disable_animation_on_mobile', 'kicker_trx_addons_disable_animation_on_mobile' ); function kicker_trx_addons_disable_animation_on_mobile( $disable ) { return kicker_get_theme_option( 'disable_animation_on_mobile' ) == 1; } } // Return list with animation effects if ( ! function_exists( 'kicker_get_list_animations_in' ) ) { function kicker_get_list_animations_in( $prepend_inherit=false ) { return function_exists( 'trx_addons_get_list_animations_in' ) ? trx_addons_get_list_animations_in( $prepend_inherit ) : array(); } } // Return classes list for the specified animation if ( ! function_exists( 'kicker_get_animation_classes' ) ) { function kicker_get_animation_classes( $animation, $speed = 'normal', $loop = 'none' ) { return function_exists( 'trx_addons_get_animation_classes' ) ? trx_addons_get_animation_classes( $animation, $speed, $loop ) : ''; } } // Return parameter data-post-animation for the posts archive if (!function_exists('kicker_add_blog_animation')) { function kicker_add_blog_animation($args=array()) { if ( ! isset( $args['count_extra'] ) ) { $animation = ''; if ( !empty($args['animation'])) { $animation = $args['animation']; } else if ( ! kicker_is_preview() ) { $animation = kicker_get_theme_option( 'blog_animation' ); } if ( ! kicker_is_off( $animation ) && empty( $args['slider'] ) ) { $animation_classes = kicker_get_animation_classes( $animation ); if ( ! empty( $animation_classes ) ) { echo ' data-post-animation="' . esc_attr( $animation_classes ) . '"'; } } } } } // Check if mouse helper is available if ( ! function_exists( 'kicker_mouse_helper_enabled' ) ) { function kicker_mouse_helper_enabled() { if ( kicker_exists_trx_addons() ) { return trx_addons_check_option( 'mouse_helper' ) ? trx_addons_get_option( 'mouse_helper' ) > 0 : false; } } } // Return string with the likes counter for the specified comment if ( ! function_exists( 'kicker_get_comment_counters' ) ) { function kicker_get_comment_counters( $counters = 'likes' ) { return function_exists( 'trx_addons_get_comment_counters' ) ? trx_addons_get_comment_counters( $counters ) : ''; } } // Display likes counter for the specified comment if ( ! function_exists( 'kicker_show_comment_counters' ) ) { function kicker_show_comment_counters( $counters = 'likes' ) { if ( function_exists( 'trx_addons_get_comment_counters' ) ) { trx_addons_get_comment_counters( $counters, true ); } } } // Add query params to sort posts by views or likes if ( ! function_exists( 'kicker_trx_addons_add_sort_order' ) ) { //Handler of the add_filter('kicker_filter_add_sort_order', 'kicker_trx_addons_add_sort_order', 10, 3); function kicker_trx_addons_add_sort_order( $q = array(), $orderby = 'date', $order = 'desc' ) { return apply_filters( 'trx_addons_filter_add_sort_order', $q, $orderby, $order ); } } // Return theme-specific logo to the plugin if ( ! function_exists( 'kicker_trx_addons_theme_logo' ) ) { //Handler of the add_filter( 'trx_addons_filter_theme_logo', 'kicker_trx_addons_theme_logo'); function kicker_trx_addons_theme_logo( $logo ) { return kicker_get_logo_image(); } } // Return true, if theme allow use site name as logo if ( ! function_exists( 'kicker_trx_addons_show_site_name_as_logo' ) ) { //Handler of the add_filter( 'trx_addons_filter_show_site_name_as_logo', 'kicker_trx_addons_show_site_name_as_logo'); function kicker_trx_addons_show_site_name_as_logo( $allow = true ) { return $allow && kicker_is_on( kicker_get_theme_option( 'logo_text' ) ); } } // Redirect action to the plugin if ( ! function_exists( 'kicker_trx_addons_show_post_meta' ) ) { //Handler of the add_action( 'kicker_action_show_post_meta', 'kicker_trx_addons_show_post_meta', 10, 3 ); function kicker_trx_addons_show_post_meta( $meta, $post_id, $args=array() ) { do_action( 'trx_addons_action_show_post_meta', $meta, $post_id, $args ); } } // Return theme-specific post meta to the plugin if ( ! function_exists( 'kicker_trx_addons_post_meta' ) ) { //Handler of the add_filter( 'trx_addons_filter_post_meta', 'kicker_trx_addons_post_meta', 10, 2); function kicker_trx_addons_post_meta( $meta, $args = array() ) { return kicker_show_post_meta( apply_filters( 'kicker_filter_post_meta_args', $args, 'trx_addons', 1 ) ); } } // Return theme-specific post meta args if ( ! function_exists( 'kicker_trx_addons_post_meta_args' ) ) { //Handler of the add_filter( 'kicker_filter_post_meta_args', 'kicker_trx_addons_post_meta_args', 10, 3); //Handler of the add_filter( 'trx_addons_filter_post_meta_args', 'kicker_trx_addons_post_meta_get_args', 10, 3); function kicker_trx_addons_post_meta_args( $args = array(), $from = '', $columns = 1 ) { $theme_specific = ! isset( $args['theme_specific'] ) || $args['theme_specific']; if ( ( kicker_is_singular() && 'trx_addons' == $from && $theme_specific ) || empty( $args ) ) { $args['components'] = join( ',', kicker_array_get_keys_by_value( kicker_get_theme_option( 'meta_parts' ) ) ); $args['seo'] = kicker_is_on( kicker_get_theme_option( 'seo_snippets' ) ); } return $args; } } // Add Rating to the meta parts list if ( ! function_exists( 'kicker_trx_addons_list_meta_parts' ) ) { //Handler of the add_filter( 'kicker_filter_list_meta_parts', 'kicker_trx_addons_list_meta_parts' ); function kicker_trx_addons_list_meta_parts( $list ) { if ( kicker_exists_reviews() ) { $list['rating'] = esc_html__( 'Rating', 'kicker' ); } return $list; } } // Return list of the meta parts if ( ! function_exists( 'kicker_trx_addons_get_list_meta_parts' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_list_meta_parts', 'kicker_trx_addons_get_list_meta_parts' ); function kicker_trx_addons_get_list_meta_parts( $list ) { return kicker_get_list_meta_parts(); } } // Check if featured image override is allowed if ( ! function_exists( 'kicker_trx_addons_featured_image_override' ) ) { //Handler of the add_filter( 'trx_addons_filter_featured_image_override','kicker_trx_addons_featured_image_override'); function kicker_trx_addons_featured_image_override( $flag = false ) { if ( $flag ) { $flag = kicker_is_on( kicker_get_theme_option( 'header_image_override' ) ) && apply_filters( 'kicker_filter_allow_override_header_image', true ); } return $flag; } } // Return featured image for current mode (post/page/category/blog template ...) if ( ! function_exists( 'kicker_trx_addons_get_current_mode_image' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_current_mode_image','kicker_trx_addons_get_current_mode_image'); function kicker_trx_addons_get_current_mode_image( $img = '' ) { return kicker_get_current_mode_image( $img ); } } // Return featured image size for related posts if ( ! function_exists( 'kicker_trx_addons_related_thumb_size' ) ) { //Handler of the add_filter( 'kicker_filter_related_thumb_size', 'kicker_trx_addons_related_thumb_size'); function kicker_trx_addons_related_thumb_size( $size = '' ) { if ( defined( 'TRX_ADDONS_CPT_CERTIFICATES_PT' ) && get_post_type() == TRX_ADDONS_CPT_CERTIFICATES_PT ) { $size = kicker_get_thumb_size( 'masonry-big' ); } return $size; } } // Redirect action 'get_mobile_menu' to the plugin // Return stored items as mobile menu if ( ! function_exists( 'kicker_trx_addons_get_mobile_menu' ) ) { //Handler of the add_filter("kicker_filter_get_mobile_menu", 'kicker_trx_addons_get_mobile_menu'); function kicker_trx_addons_get_mobile_menu( $menu ) { return apply_filters( 'trx_addons_filter_get_mobile_menu', $menu ); } } // Redirect action 'login' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_login' ) ) { //Handler of the add_action( 'kicker_action_login', 'kicker_trx_addons_action_login'); function kicker_trx_addons_action_login( $args = array() ) { do_action( 'trx_addons_action_login', $args ); } } // Redirect action 'cart' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_cart' ) ) { //Handler of the add_action( 'kicker_action_cart', 'kicker_trx_addons_action_cart'); function kicker_trx_addons_action_cart( $args = array() ) { do_action( 'trx_addons_action_cart', $args ); } } // Redirect action 'product_attributes' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_product_attributes' ) ) { //Handler of the add_action( 'kicker_action_product_attributes', 'kicker_trx_addons_action_product_attributes', 10, 1 ); function kicker_trx_addons_action_product_attributes( $attribute ) { do_action( 'trx_addons_action_product_attributes', $attribute ); } } // Redirect action 'search' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_search' ) ) { //Handler of the add_action( 'kicker_action_search', 'kicker_trx_addons_action_search', 10, 1); function kicker_trx_addons_action_search( $args ) { if ( kicker_exists_trx_addons() ) { do_action( 'trx_addons_action_search', $args ); } else { set_query_var( 'kicker_search_args', $args ); get_template_part( apply_filters( 'kicker_filter_get_template_part', 'templates/search-form' ) ); set_query_var( 'kicker_search_args', array() ); } } } // Redirect filter 'search_form_url' to the plugin if ( ! function_exists( 'kicker_trx_addons_filter_search_form_url' ) ) { //Handler of the add_filter( 'kicker_filter_search_form_url', 'kicker_trx_addons_filter_search_form_url', 10, 1 ); function kicker_trx_addons_filter_search_form_url( $url ) { return apply_filters( 'trx_addons_filter_search_form_url', $url ); } } // Redirect filter 'kicker_filter_options_get_list_choises' to the plugin if ( ! function_exists( 'kicker_trx_addons_options_get_list_choises' ) ) { //Handler of the add_filter( 'kicker_filter_options_get_list_choises', 'kicker_trx_addons_options_get_list_choises', 999, 2 ); function kicker_trx_addons_options_get_list_choises( $list, $id ) { if ( is_array( $list ) && count( $list ) == 0 ) { $list = apply_filters( 'trx_addons_filter_options_get_list_choises', $list, $id ); } return $list; } } // Redirect action 'kicker_action_save_options' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_save_options' ) ) { //Handler of the add_action( 'kicker_action_save_options', 'kicker_trx_addons_action_save_options', 1 ); function kicker_trx_addons_action_save_options() { do_action( 'trx_addons_action_save_options_theme' ); } } // Redirect action 'kicker_action_before_body' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_body' ) ) { //Handler of the add_action( 'kicker_action_before_body', 'kicker_trx_addons_action_before_body', 1); function kicker_trx_addons_action_before_body() { do_action( 'trx_addons_action_before_body' ); } } // Redirect action 'kicker_action_page_content_wrap' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_page_content_wrap' ) ) { //Handler of the add_action( 'kicker_action_page_content_wrap', 'kicker_trx_addons_action_page_content_wrap', 10, 1 ); function kicker_trx_addons_action_page_content_wrap( $ajax = false ) { do_action( 'trx_addons_action_page_content_wrap', $ajax ); } } // Redirect action 'kicker_action_before_header' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_header' ) ) { //Handler of the add_action( 'kicker_action_before_header', 'kicker_trx_addons_action_before_header' ); function kicker_trx_addons_action_before_header() { do_action( 'trx_addons_action_before_header' ); } } // Redirect action 'kicker_action_after_header' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_header' ) ) { //Handler of the add_action( 'kicker_action_after_header', 'kicker_trx_addons_action_after_header' ); function kicker_trx_addons_action_after_header() { do_action( 'trx_addons_action_after_header' ); } } // Redirect action 'kicker_action_before_footer' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_footer' ) ) { //Handler of the add_action( 'kicker_action_before_footer', 'kicker_trx_addons_action_before_footer' ); function kicker_trx_addons_action_before_footer() { do_action( 'trx_addons_action_before_footer' ); } } // Redirect action 'kicker_action_after_footer' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_footer' ) ) { //Handler of the add_action( 'kicker_action_after_footer', 'kicker_trx_addons_action_after_footer' ); function kicker_trx_addons_action_after_footer() { do_action( 'trx_addons_action_after_footer' ); } } // Redirect action 'kicker_action_before_sidebar_wrap' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_sidebar_wrap' ) ) { //Handler of the add_action( 'kicker_action_before_sidebar_wrap', 'kicker_trx_addons_action_before_sidebar_wrap', 10, 1 ); function kicker_trx_addons_action_before_sidebar_wrap( $sb = '' ) { do_action( 'trx_addons_action_before_sidebar_wrap', $sb ); } } // Redirect action 'kicker_action_after_sidebar' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_sidebar_wrap' ) ) { //Handler of the add_action( 'kicker_action_after_sidebar_wrap', 'kicker_trx_addons_action_after_sidebar_wrap', 10, 1 ); function kicker_trx_addons_action_after_sidebar_wrap( $sb = '' ) { do_action( 'trx_addons_action_after_sidebar_wrap', $sb ); } } // Redirect action 'kicker_action_before_sidebar' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_sidebar' ) ) { //Handler of the add_action( 'kicker_action_before_sidebar', 'kicker_trx_addons_action_before_sidebar', 10, 1 ); function kicker_trx_addons_action_before_sidebar( $sb = '' ) { do_action( 'trx_addons_action_before_sidebar', $sb ); } } // Redirect action 'kicker_action_after_sidebar' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_sidebar' ) ) { //Handler of the add_action( 'kicker_action_after_sidebar', 'kicker_trx_addons_action_after_sidebar', 10, 1 ); function kicker_trx_addons_action_after_sidebar( $sb = '' ) { do_action( 'trx_addons_action_after_sidebar', $sb ); } } // Redirect action 'kicker_action_between_posts' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_between_posts' ) ) { //Handler of the add_action( 'kicker_action_between_posts', 'kicker_trx_addons_action_between_posts' ); function kicker_trx_addons_action_between_posts() { do_action( 'trx_addons_action_between_posts' ); } } // Redirect action 'kicker_action_before_post_header' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_post_header' ) ) { //Handler of the add_action( 'kicker_action_before_post_header', 'kicker_trx_addons_action_before_post_header' ); function kicker_trx_addons_action_before_post_header() { do_action( 'trx_addons_action_before_post_header' ); } } // Redirect action 'kicker_action_after_post_header' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_post_header' ) ) { //Handler of the add_action( 'kicker_action_after_post_header', 'kicker_trx_addons_action_after_post_header' ); function kicker_trx_addons_action_after_post_header() { do_action( 'trx_addons_action_after_post_header' ); } } // Redirect action 'kicker_action_before_post_content' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_post_content' ) ) { //Handler of the add_action( 'kicker_action_before_post_content', 'kicker_trx_addons_action_before_post_content' ); function kicker_trx_addons_action_before_post_content() { do_action( 'trx_addons_action_before_post_content' ); } } // Redirect action 'kicker_action_after_post_content' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_post_content' ) ) { //Handler of the add_action( 'kicker_action_after_post_content', 'kicker_trx_addons_action_after_post_content' ); function kicker_trx_addons_action_after_post_content() { do_action( 'trx_addons_action_after_post_content' ); } } // Redirect action 'breadcrumbs' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_breadcrumbs' ) ) { //Handler of the add_action( 'kicker_action_breadcrumbs', 'kicker_trx_addons_action_breadcrumbs' ); function kicker_trx_addons_action_breadcrumbs() { do_action( 'trx_addons_action_breadcrumbs' ); } } // Redirect action 'before_single_post_video' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_before_single_post_video' ) ) { //Handler of the add_action( 'kicker_action_before_single_post_video', 'kicker_trx_addons_action_before_single_post_video', 10, 1 ); function kicker_trx_addons_action_before_single_post_video( $args = array() ) { do_action( 'trx_addons_action_before_single_post_video', $args ); } } // Redirect action 'after_single_post_video' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_after_single_post_video' ) ) { //Handler of the add_action( 'kicker_action_after_single_post_video', 'kicker_trx_addons_action_after_single_post_video', 10, 1 ); function kicker_trx_addons_action_after_single_post_video( $args = array() ) { do_action( 'trx_addons_action_after_single_post_video', $args ); } } // Redirect action 'show_layout' to the plugin if ( ! function_exists( 'kicker_trx_addons_action_show_layout' ) ) { //Handler of the add_action( 'kicker_action_show_layout', 'kicker_trx_addons_action_show_layout', 10, 2 ); function kicker_trx_addons_action_show_layout( $layout_id = '', $post_id = 0 ) { if ( ! apply_filters( 'kicker_filter_custom_layout_shown', false, $layout_id, $post_id ) ) { do_action( 'trx_addons_action_show_layout', $layout_id, $post_id ); } } } // Redirect action 'before_full_post_content' to the plugin if ( ! function_exists( 'kicker_trx_addons_before_full_post_content' ) ) { //Handler of the add_action( 'kicker_action_before_full_post_content', 'kicker_trx_addons_before_full_post_content' ); function kicker_trx_addons_before_full_post_content() { do_action( 'trx_addons_action_before_full_post_content' ); } } // Redirect action 'after_full_post_content' to the plugin if ( ! function_exists( 'kicker_trx_addons_after_full_post_content' ) ) { //Handler of the add_action( 'kicker_action_after_full_post_content', 'kicker_trx_addons_after_full_post_content' ); function kicker_trx_addons_after_full_post_content() { do_action( 'trx_addons_action_after_full_post_content' ); } } // Redirect filter 'get_translated_layout' to the plugin if ( ! function_exists( 'kicker_trx_addons_filter_get_translated_layout' ) ) { //Handler of the add_filter( 'kicker_filter_get_translated_layout', 'kicker_trx_addons_filter_get_translated_layout', 10, 1); function kicker_trx_addons_filter_get_translated_layout( $layout_id = '' ) { return apply_filters( 'trx_addons_filter_get_translated_post', $layout_id ); } } // Show user meta (socials) if ( ! function_exists( 'kicker_trx_addons_action_user_meta' ) ) { //Handler of the add_action( 'kicker_action_user_meta', 'kicker_trx_addons_action_user_meta', 10, 1 ); function kicker_trx_addons_action_user_meta( $from='' ) { do_action( 'trx_addons_action_user_meta' ); } } // Redirect filter 'get_blog_title' to the plugin if ( ! function_exists( 'kicker_trx_addons_get_blog_title' ) ) { //Handler of the add_filter( 'kicker_filter_get_blog_title', 'kicker_trx_addons_get_blog_title'); function kicker_trx_addons_get_blog_title( $title = '' ) { return apply_filters( 'trx_addons_filter_get_blog_title', $title ); } } // Return title of the blog archive page if ( ! function_exists( 'kicker_trx_addons_get_blog_title_from_blog_archive' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_blog_title', 'kicker_trx_addons_get_blog_title_from_blog_archive' ); function kicker_trx_addons_get_blog_title_from_blog_archive( $title = '' ) { $page = kicker_storage_get( 'blog_archive_template_post' ); if ( is_object( $page ) && ! empty( $page->post_title ) ) { $title = apply_filters( 'the_title', $page->post_title, $page->ID ); } return $title; } } // Redirect filter 'get_post_link' to the plugin if ( ! function_exists( 'kicker_trx_addons_get_post_link' ) ) { //Handler of the add_filter( 'kicker_filter_get_post_link', 'kicker_trx_addons_get_post_link'); function kicker_trx_addons_get_post_link( $link ) { return apply_filters( 'trx_addons_filter_get_post_link', $link ); } } // Redirect filter 'term_name' to the plugin if ( ! function_exists( 'kicker_trx_addons_term_name' ) ) { //Handler of the add_filter( 'kicker_filter_term_name', 'kicker_trx_addons_term_name', 10, 2 ); function kicker_trx_addons_term_name( $term_name, $taxonomy ) { return apply_filters( 'trx_addons_filter_term_name', $term_name, $taxonomy ); } } // Redirect filter 'get_post_iframe' to the plugin if ( ! function_exists( 'kicker_trx_addons_get_post_iframe' ) ) { //Handler of the add_filter( 'kicker_filter_get_post_iframe', 'kicker_trx_addons_get_post_iframe', 10, 1); function kicker_trx_addons_get_post_iframe( $html = '' ) { return apply_filters( 'trx_addons_filter_get_post_iframe', $html ); } } // Return true, if theme need a SEO snippets if ( ! function_exists( 'kicker_trx_addons_seo_snippets' ) ) { //Handler of the add_filter( 'trx_addons_filter_seo_snippets', 'kicker_trx_addons_seo_snippets'); function kicker_trx_addons_seo_snippets( $enable = false ) { return kicker_is_on( kicker_get_theme_option( 'seo_snippets' ) ); } } // Hide featured image in some post_types if ( ! function_exists( 'kicker_trx_addons_before_article' ) ) { //Handler of the add_action( 'trx_addons_action_before_article', 'kicker_trx_addons_before_article', 10, 1 ); function kicker_trx_addons_before_article( $page = '' ) { if ( in_array( $page, array( 'portfolio.single', 'services.single' ) ) ) { if ( (int) kicker_get_theme_option( 'show_featured_image', 1 ) == 0 ) { kicker_sc_layouts_showed( 'featured', true ); } } } } // Show user meta (socials) if ( ! function_exists( 'kicker_trx_addons_article_start' ) ) { //Handler of the add_action( 'trx_addons_action_article_start', 'kicker_trx_addons_article_start', 10, 1); function kicker_trx_addons_article_start( $page = '' ) { if ( kicker_is_on( kicker_get_theme_option( 'seo_snippets' ) ) ) { get_template_part( apply_filters( 'kicker_filter_get_template_part', 'templates/seo' ) ); } } } // Redirect filter 'prepare_css' to the plugin if ( ! function_exists( 'kicker_trx_addons_prepare_css' ) ) { //Handler of the add_filter( 'kicker_filter_prepare_css', 'kicker_trx_addons_prepare_css', 10, 2); function kicker_trx_addons_prepare_css( $css = '', $remove_spaces = true ) { return apply_filters( 'trx_addons_filter_prepare_css', $css, $remove_spaces ); } } // Redirect filter 'prepare_js' to the plugin if ( ! function_exists( 'kicker_trx_addons_prepare_js' ) ) { //Handler of the add_filter( 'kicker_filter_prepare_js', 'kicker_trx_addons_prepare_js', 10, 2); function kicker_trx_addons_prepare_js( $js = '', $remove_spaces = true ) { return apply_filters( 'trx_addons_filter_prepare_js', $js, $remove_spaces ); } } // Add plugin's specific variables to the scripts if ( ! function_exists( 'kicker_trx_addons_localize_script' ) ) { //Handler of the add_filter( 'kicker_filter_localize_script', 'kicker_trx_addons_localize_script'); function kicker_trx_addons_localize_script( $arr ) { $arr['trx_addons_exists'] = kicker_exists_trx_addons(); return $arr; } } // Redirect filter 'trx_addons_filter_get_theme_file_dir' to the theme if ( ! function_exists( 'kicker_trx_addons_get_theme_file_dir' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_theme_file_dir', 'kicker_trx_addons_get_theme_file_dir', 10, 3); function kicker_trx_addons_get_theme_file_dir( $dir, $file, $return_url ) { return apply_filters( 'kicker_filter_get_theme_file_dir', $dir, $file, $return_url ); } } // Redirect filter 'trx_addons_filter_get_theme_folder_dir' to the theme if ( ! function_exists( 'kicker_trx_addons_get_theme_folder_dir' ) ) { //Handler of the add_filter( 'trx_addons_filter_get_theme_folder_dir', 'kicker_trx_addons_get_theme_folder_dir', 10, 3); function kicker_trx_addons_get_theme_folder_dir( $dir, $folder, $return_url ) { return apply_filters( 'kicker_filter_get_theme_file_dir', $dir, $folder, $return_url ); } } // Add plugin-specific colors and fonts to the custom CSS if ( kicker_exists_trx_addons() ) { $kicker_fdir = kicker_get_file_dir( 'plugins/trx_addons/trx_addons-style.php' ); if ( ! empty( $kicker_fdir ) ) { require_once $kicker_fdir; } }