PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
themes
/
dt-the7
/
inc
/
mods
/
compatibility
<?php /** * Visual Composer compatibility class. * * @package the7 * @since 1.0.0 */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Presscore_Modules_Compatibility_VC', false ) ) : class Presscore_Modules_Compatibility_VC { public static function execute() { if ( ! class_exists( 'Vc_Manager', false ) ) { return; } if ( of_get_option( 'general-hide_plugins_notifications', true ) ) { // Hide activation message. add_action( 'vc_before_init', array( __CLASS__, 'vc_set_as_theme' ) ); // Show design tabs. add_filter( 'vc_settings_page_show_design_tabs', '__return_true' ); // Disable updater. if ( function_exists( 'vc_manager' ) ) { vc_manager()->disableUpdater(); } } if ( function_exists( 'vc_set_default_editor_post_types' ) ) { vc_set_default_editor_post_types( apply_filters( 'presscore_mod_js_composer_default_editor_post_types', array( 'page', 'post' ) ) ); } if ( function_exists( 'vc_set_shortcodes_templates_dir' ) ) { vc_set_shortcodes_templates_dir( PRESSCORE_THEME_DIR . '/inc/shortcodes/vc_templates' ); } require_once locate_template( '/inc/shortcodes/vc-extensions.php' ); add_action( 'init', array( __CLASS__, 'load_bridge' ), 20 ); add_action( 'admin_enqueue_scripts', array( __CLASS__, 'load_admin_static' ), 20 ); add_action( 'admin_print_scripts-post.php', array( __CLASS__, 'vc_row_scripts' ), 9999 ); add_action( 'admin_print_scripts-post-new.php', array( __CLASS__, 'vc_row_scripts' ), 9999 ); add_action( 'admin_init', array( __CLASS__, 'remove_teaser_meta_box' ), 7 ); add_filter( 'presscore_localized_script', array( __CLASS__, 'localize_script' ) ); } public static function load_bridge() { $shortcodes_to_remove = apply_filters( 'presscore_js_composer_shortcodes_to_remove', array( "vc_wp_search", "vc_wp_meta", "vc_wp_recentcomments", "vc_wp_calendar", "vc_wp_pages", "vc_wp_tagcloud", "vc_wp_custommenu", "vc_wp_text", "vc_wp_posts", "vc_wp_links", "vc_wp_categories", "vc_wp_archives", "vc_wp_rss", "vc_gallery", "vc_teaser_grid", "vc_button", "vc_cta_button", "vc_posts_grid", "vc_carousel", "vc_images_carousel", "vc_posts_slider", "vc_cta_button2", ) ); foreach ( $shortcodes_to_remove as $shortcode ) { vc_remove_element( $shortcode ); } require_once locate_template( '/inc/shortcodes/js_composer_bridge.php' ); do_action( 'presscore_js_composer_after_bridge_loaded' ); } public static function load_admin_static() { wp_enqueue_style( 'dt-vc-bridge', PRESSCORE_THEME_URI . '/inc/shortcodes/css/js_composer_bridge.css' ); if ( function_exists( 'vc_is_inline' ) && vc_is_inline() ) { wp_enqueue_script( 'vc-custom-view-by-dt', PRESSCORE_THEME_URI . '/inc/shortcodes/js/vc-custom-view.js', array(), false, true ); } } public static function vc_row_scripts() { if ( is_callable( 'vc_editor_post_types' ) && in_array( get_post_type(), vc_editor_post_types() ) ) { wp_enqueue_script( 'dt-vc_row-custom-admin', trailingslashit( PRESSCORE_SHORTCODES_URI ) . 'vc_extend/vc_row-custom-admin.js', array(), wp_get_theme()->get( 'Version' ), true ); } } public static function remove_teaser_meta_box() { global $vc_teaser_box; if ( is_callable( 'vc_editor_post_types' ) && ! empty( $vc_teaser_box ) ) { $pt_array = vc_editor_post_types(); foreach ( $pt_array as $pt ) { remove_meta_box( 'vc_teaser', $pt, 'side' ); } remove_action( 'save_post', array( &$vc_teaser_box, 'saveTeaserMetaBox' ) ); } } public static function vc_set_as_theme() { if ( function_exists( 'vc_set_as_theme' ) ) { vc_set_as_theme(); } } /** * Export VC settings to js. * * @param array $var * * @return array */ public static function localize_script( $var = array() ) { $var['VCMobileScreenWidth'] = get_option( 'wpb_js_responsive_max', '768' ); return $var; } } Presscore_Modules_Compatibility_VC::execute(); endif;
[+]
..
[-] class-compatibility-bbpress.php
[edit]
[-] .htaccess
[edit]
[+]
backward-compat
[-] class-compatibility-gopricing.php
[edit]
[-] compatibility.php
[edit]
[-] class-compatibility-ubermenu.php
[edit]
[-] class-compatibility-jetpack.php
[edit]
[-] class-compatibility-ldlms.php
[edit]
[-] class-compatibility-tec.php
[edit]
[+]
wpml
[-] class-compatibility-vc.php
[edit]
[-] class-compatibility-layerslider.php
[edit]
[+]
woocommerce