id ) || empty( $admin_page_hooks ) ) { return false; } $settings_page = false; if ( ! empty( $admin_page_hooks['monsterinsights_settings'] ) && $current_screen->id === $admin_page_hooks['monsterinsights_settings'] ) { $settings_page = true; } if ( $current_screen->id === 'toplevel_page_monsterinsights_settings' ) { $settings_page = true; } if ( $current_screen->id === 'insights_page_monsterinsights_settings' ) { $settings_page = true; } if ( strpos( $current_screen->id, 'monsterinsights_settings' ) !== false ) { $settings_page = true; } if ( ! empty( $current_screen->base ) && strpos( $current_screen->base, 'monsterinsights_network' ) !== false ) { $settings_page = true; } return $settings_page; } /** * Determine if the current page is the Reports page. * * @return bool */ function monsterinsights_is_reports_page() { $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false; global $admin_page_hooks; if ( ! is_object( $current_screen ) || empty( $current_screen->id ) || empty( $admin_page_hooks ) ) { return false; } $reports_page = false; if ( ! empty( $admin_page_hooks['monsterinsights_reports'] ) && $current_screen->id === $admin_page_hooks['monsterinsights_reports'] ) { $reports_page = true; } if ( 'toplevel_page_monsterinsights_reports' === $current_screen->id ) { $reports_page = true; } if ( strpos( $current_screen->id, 'monsterinsights_reports' ) !== false ) { $reports_page = true; } return $reports_page; } /** * Loads styles for all MonsterInsights-based Administration Screens. * * @return null Return early if not on the proper screen. * @since 6.0.0 * @access public * */ function monsterinsights_admin_styles() { $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Load Common admin styles. wp_register_style( 'monsterinsights-admin-common-style', plugins_url( 'assets/css/admin-common' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); wp_enqueue_style( 'monsterinsights-admin-common-style' ); // Get current screen. $screen = get_current_screen(); // Bail if we're not on a MonsterInsights screen. if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) { return; } $version_path = monsterinsights_is_pro_version() ? 'pro' : 'lite'; $rtl = is_rtl() ? '.rtl' : ''; // For the settings page, load the Vue app styles. if ( monsterinsights_is_settings_page() ) { if ( ! defined( 'MONSTERINSIGHTS_LOCAL_JS_URL' ) ) { wp_enqueue_style( 'monsterinsights-vue-style-vendors', plugins_url( $version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); wp_enqueue_style( 'monsterinsights-vue-style-common', plugins_url( $version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); wp_enqueue_style( 'monsterinsights-vue-style', plugins_url( $version_path . '/assets/vue/css/settings' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); } // Don't load other styles on the settings page. return; } if ( monsterinsights_is_reports_page() ) { if ( ! defined( 'MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL' ) ) { wp_enqueue_style( 'monsterinsights-vue-style-vendors', plugins_url( $version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); wp_enqueue_style( 'monsterinsights-vue-style-common', plugins_url( $version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); wp_enqueue_style( 'monsterinsights-vue-style', plugins_url( $version_path . '/assets/vue/css/reports' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() ); } return; } // Tooltips wp_enqueue_script( 'jquery-ui-tooltip' ); } add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_styles' ); /** * Loads scripts for all MonsterInsights-based Administration Screens. * * @return null Return early if not on the proper screen. * @since 6.0.0 * @access public * */ function monsterinsights_admin_scripts() { // Our Common Admin JS. $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; wp_register_script( 'monsterinsights-admin-common-script', plugins_url( 'assets/js/admin-common' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array( 'jquery' ), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-admin-common-script' ); wp_localize_script( 'monsterinsights-admin-common-script', 'monsterinsights_admin_common', array( 'ajax' => admin_url( 'admin-ajax.php' ), 'dismiss_notice_nonce' => wp_create_nonce( 'monsterinsights-dismiss-notice' ), ) ); // Get current screen. $screen = get_current_screen(); // Bail if we're not on a MonsterInsights screen. if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) { return; } $version_path = monsterinsights_is_pro_version() ? 'pro' : 'lite'; // For the settings page, load the Vue app. if ( monsterinsights_is_settings_page() ) { if ( ! defined( 'MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL' ) ) { wp_enqueue_script( 'monsterinsights-vue-vendors', plugins_url( $version_path . '/assets/vue/js/chunk-vendors.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-vue-common', plugins_url( $version_path . '/assets/vue/js/chunk-common.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true ); } else { wp_enqueue_script( 'monsterinsights-vue-vendors', MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL, array(), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-vue-common', MONSTERINSIGHTS_LOCAL_COMMON_JS_URL, array(), monsterinsights_get_asset_version(), true ); } $app_js_url = defined( 'MONSTERINSIGHTS_LOCAL_JS_URL' ) && MONSTERINSIGHTS_LOCAL_JS_URL ? MONSTERINSIGHTS_LOCAL_JS_URL : plugins_url( $version_path . '/assets/vue/js/settings.js', MONSTERINSIGHTS_PLUGIN_FILE ); wp_register_script( 'monsterinsights-vue-script', $app_js_url, array(), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-vue-script' ); $plugins = get_plugins(); $install_amp_url = false; if ( monsterinsights_can_install_plugins() ) { $amp_key = 'amp/amp.php'; if ( array_key_exists( $amp_key, $plugins ) ) { $install_amp_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $amp_key ), 'activate-plugin_' . $amp_key ); } else { $install_amp_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=amp' ), 'install-plugin_amp' ); } } $install_woocommerce_url = false; if ( monsterinsights_can_install_plugins() ) { $woo_key = 'woocommerce/woocommerce.php'; if ( array_key_exists( $woo_key, $plugins ) ) { $install_woocommerce_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $woo_key ), 'activate-plugin_' . $woo_key ); } else { $install_woocommerce_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=woocommerce' ), 'install-plugin_woocommerce' ); } } $install_fbia_url = false; if ( monsterinsights_can_install_plugins() ) { $fbia_key = 'fb-instant-articles/facebook-instant-articles.php'; if ( array_key_exists( $fbia_key, $plugins ) ) { $install_fbia_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $fbia_key ), 'activate-plugin_' . $fbia_key ); } else { $install_fbia_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=fb-instant-articles' ), 'install-plugin_fb-instant-articles' ); } } $prepared_dimensions = array(); if ( class_exists( 'MonsterInsights_Admin_Custom_Dimensions' ) ) { $dimensions = new MonsterInsights_Admin_Custom_Dimensions(); $dimensions = $dimensions->custom_dimensions(); $prepared_dimensions = array(); foreach ( $dimensions as $dimension_type => $dimension ) { $dimension['type'] = $dimension_type; $prepared_dimensions[] = $dimension; } } $is_authed = ( MonsterInsights()->auth->is_authed() || MonsterInsights()->auth->is_network_authed() ); wp_localize_script( 'monsterinsights-vue-script', 'monsterinsights', array( 'ajax' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'mi-admin-nonce' ), 'network' => is_network_admin(), 'translations' => wp_get_jed_locale_data( monsterinsights_is_pro_version() ? 'ga-premium' : 'google-analytics-for-wordpress' ), 'assets' => plugins_url( $version_path . '/assets/vue', MONSTERINSIGHTS_PLUGIN_FILE ), 'roles' => monsterinsights_get_roles(), 'roles_manage_options' => monsterinsights_get_manage_options_roles(), 'shareasale_id' => monsterinsights_get_shareasale_id(), 'shareasale_url' => monsterinsights_get_shareasale_url( monsterinsights_get_shareasale_id(), '' ), 'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=monsterinsights_network#/addons' ) : admin_url( 'admin.php?page=monsterinsights_settings#/addons' ), 'seo_settings_page_url' => is_multisite() ? network_admin_url( 'admin.php?page=monsterinsights_network#/seo' ) : admin_url( 'admin.php?page=monsterinsights_settings#/seo' ), 'aioseo_dashboard_url' => is_multisite() ? network_admin_url( 'admin.php?page=aioseo' ) : admin_url( 'admin.php?page=aioseo' ), 'wp_plugins_page_url' => is_multisite() ? network_admin_url( 'plugins.php' ) : admin_url( 'plugins.php' ), 'email_summary_url' => admin_url( 'admin.php?monsterinsights_email_preview&monsterinsights_email_template=summary' ), 'install_amp_url' => $install_amp_url, 'install_fbia_url' => $install_fbia_url, 'install_woo_url' => $install_woocommerce_url, 'dimensions' => $prepared_dimensions, 'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=monsterinsights-onboarding' ) : admin_url( 'index.php?page=monsterinsights-onboarding' ), 'install_plugins' => monsterinsights_can_install_plugins(), 'unfiltered_html' => current_user_can( 'unfiltered_html' ), 'activate_nonce' => wp_create_nonce( 'monsterinsights-activate' ), 'deactivate_nonce' => wp_create_nonce( 'monsterinsights-deactivate' ), 'install_nonce' => wp_create_nonce( 'monsterinsights-install' ), // Used to add notices for future deprecations. 'versions' => monsterinsights_get_php_wp_version_warning_data(), 'plugin_version' => MONSTERINSIGHTS_VERSION, 'is_admin' => true, 'admin_email' => get_option( 'admin_email' ), 'site_url' => get_site_url(), 'reports_url' => add_query_arg( 'page', 'monsterinsights_reports', admin_url( 'admin.php' ) ), 'ecommerce_report_url' => add_query_arg( 'page', 'monsterinsights_reports#/ecommerce', admin_url( 'admin.php' ) ), 'ecommerce_settings_tab_url' => add_query_arg( 'page', 'monsterinsights_settings#/ecommerce', admin_url( 'admin.php' ) ), 'first_run_notice' => apply_filters( 'monsterinsights_settings_first_time_notice_hide', monsterinsights_get_option( 'monsterinsights_first_run_notice' ) ), 'getting_started_url' => is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_network#/about' ) : admin_url( 'admin.php?page=monsterinsights_settings#/about/getting-started' ), 'authed' => $is_authed, 'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ), 'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ), 'load_headline_analyzer_settings' => monsterinsights_load_gutenberg_app() ? 'true' : 'false', ) ); // Don't load other scripts on the settings page. return; } if ( monsterinsights_is_reports_page() ) { global $wp_version; if ( ! defined( 'MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL' ) ) { wp_enqueue_script( 'monsterinsights-vue-vendors', plugins_url( $version_path . '/assets/vue/js/chunk-vendors.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-vue-common', plugins_url( $version_path . '/assets/vue/js/chunk-common.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true ); } else { wp_enqueue_script( 'monsterinsights-vue-vendors', MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL, array(), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-vue-common', MONSTERINSIGHTS_LOCAL_COMMON_JS_URL, array(), monsterinsights_get_asset_version(), true ); } $app_js_url = defined( 'MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL' ) && MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL ? MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL : plugins_url( $version_path . '/assets/vue/js/reports.js', MONSTERINSIGHTS_PLUGIN_FILE ); wp_register_script( 'monsterinsights-vue-reports', $app_js_url, array(), monsterinsights_get_asset_version(), true ); wp_enqueue_script( 'monsterinsights-vue-reports' ); // We do not have a current auth. $auth = MonsterInsights()->auth; $site_auth = $auth->get_viewname(); $ms_auth = is_multisite() && $auth->get_network_viewname(); wp_localize_script( 'monsterinsights-vue-reports', 'monsterinsights', array( 'ajax' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'mi-admin-nonce' ), 'network' => is_network_admin(), 'translations' => wp_get_jed_locale_data( monsterinsights_is_pro_version() ? 'ga-premium' : 'google-analytics-for-wordpress' ), 'assets' => plugins_url( $version_path . '/assets/vue', MONSTERINSIGHTS_PLUGIN_FILE ), 'shareasale_id' => monsterinsights_get_shareasale_id(), 'shareasale_url' => monsterinsights_get_shareasale_url( monsterinsights_get_shareasale_id(), '' ), 'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=monsterinsights_network#/addons' ) : admin_url( 'admin.php?page=monsterinsights_settings#/addons' ), 'timezone' => date( 'e' ), 'authed' => $site_auth || $ms_auth, 'auth_connected_type' => $auth->get_connected_type(), 'settings_url' => add_query_arg( 'page', 'monsterinsights_settings', admin_url( 'admin.php' ) ), // Used to add notices for future deprecations. 'versions' => monsterinsights_get_php_wp_version_warning_data(), 'plugin_version' => MONSTERINSIGHTS_VERSION, 'is_admin' => true, 'admin_email' => get_option( 'admin_email' ), 'site_url' => get_site_url(), 'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=monsterinsights-onboarding' ) : admin_url( 'index.php?page=monsterinsights-onboarding' ), 'install_nonce' => wp_create_nonce( 'monsterinsights-install' ), 'activate_nonce' => wp_create_nonce( 'monsterinsights-activate' ), 'deactivate_nonce' => wp_create_nonce( 'monsterinsights-deactivate' ), 'update_settings' => current_user_can( 'monsterinsights_save_settings' ), 'migrated' => monsterinsights_get_option( 'gadwp_migrated', 0 ), ) ); return; } // ublock notice add_action( 'admin_print_footer_scripts', 'monsterinsights_settings_ublock_error_js', 9999999 ); } add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_scripts' ); /** * Remove Assets that conflict with ours from our screens. * * @return null Return early if not on the proper screen. * @since 6.0.4 * @access public * */ function monsterinsights_remove_conflicting_asset_files() { // Get current screen. $screen = get_current_screen(); // Bail if we're not on a MonsterInsights screen. if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) { return; } $styles = array( 'kt_admin_css', // Pinnacle theme 'select2-css', // Schema theme 'tweetshare_style', // TweetShare - Click To Tweet 'tweetshare_custom_style', // TweetShare - Click To Tweet 'tweeetshare_custome_style', // TweetShare - Click To Tweet 'tweeetshare_notice_style', // TweetShare - Click To Tweet 'tweeetshare_theme_style', // TweetShare - Click To Tweet 'tweeetshare_tweet_box_style', // TweetShare - Click To Tweet 'soultype2-admin', // SoulType Plugin 'thesis-options-stylesheet', // Thesis Options Stylesheet 'imagify-sweetalert-core', // Imagify 'imagify-sweetalert', // Imagify 'smls-backend-style', // Smart Logo Showcase Lite 'wp-reactjs-starter', // wp-real-media-library 'control-panel-modal-plugin', // Ken Theme 'theme-admin-css', // Vitrine Theme 'qi-framework-styles', // Artisan Nayma Theme 'artisan-pages-style', // Artisan Pages Plugin 'control-panel-modal-plugin', // Ken Theme 'sweetalert', // Church Suite Theme by Webnus 'woo_stock_alerts_admin_css', // WooCommerce bolder product alerts 'custom_wp_admin_css', // Fix for Add Social Share 'fo_css', // Fix for Add Social Share 'font_css', // Fix for Add Social Share 'font2_css', // Fix for Add Social Share 'font3_css', // Fix for Add Social Share 'hover_css', // Fix for Add Social Share 'fontend_styling', // Fix for Add Social Share 'datatable', // WP Todo 'bootstrap', // WP Todo 'flipclock', // WP Todo 'repuso_css_admin', // Social testimonials and reviews by Repuso ); $scripts = array( 'kad_admin_js', // Pinnacle theme 'dt-chart', // DesignThemes core features plugin 'tweeetshare_font_script', // TweetShare - Click To Tweet 'tweeetshare_jquery_script', // TweetShare - Click To Tweet 'tweeetshare_jqueryui_script', // TweetShare - Click To Tweet 'tweeetshare_custom_script', // TweetShare - Click To Tweet 'imagify-promise-polyfill', // Imagify 'imagify-sweetalert', // Imagify 'imagify-chart', // Imagify 'chartjs', // Comet Cache Pro 'wp-reactjs-starter', // wp-real-media-library 'jquery-tooltipster', // WP Real Media Library 'jquery-nested-sortable', // WP Real Media Library 'jquery-aio-tree', // WP Real Media Library 'wp-media-picker', // WP Real Media Library 'rml-general', // WP Real Media Library 'rml-library', // WP Real Media Library 'rml-grid', // WP Real Media Library 'rml-list', // WP Real Media Library 'rml-modal', // WP Real Media Library 'rml-order', // WP Real Media Library 'rml-meta', // WP Real Media Library 'rml-uploader', // WP Real Media Library 'rml-options', // WP Real Media Library 'rml-usersettings', // WP Real Media Library 'rml-main', // WP Real Media Library 'control-panel-sweet-alert', // Ken Theme 'sweet-alert-js', // Vitrine Theme 'theme-admin-script', // Vitrine Theme 'sweetalert', // Church Suite Theme by Webnus 'be_alerts_charts', // WooCommerce bolder product alerts 'magayo-lottery-results', // Magayo Lottery Results 'control-panel-sweet-alert', // Ken Theme 'cpm_chart', // WP Project Manager 'adminscripts', // Artisan Nayma Theme 'artisan-pages-script', // Artisan Pages Plugin 'tooltipster', // Grand News Theme 'fancybox', // Grand News Theme 'grandnews-admin-cript', // Grand News Theme 'colorpicker', // Grand News Theme 'eye', // Grand News Theme 'icheck', // Grand News Theme 'learn-press-chart', // LearnPress 'theme-script-main', // My Listing Theme by 27collective 'selz', // Selz eCommerce 'tie-admin-scripts', // Tie Theme 'blossomthemes-toolkit', // BlossomThemes Toolkit 'illdy-widget-upload-image', // Illdy Companion By Colorlib 'moment.js', // WooCommerce Table Rate Shipping 'default', // Bridge Theme 'qode-tax-js', // Bridge Theme 'wc_smartship_moment_js', // WooCommerce Posti SmartShip by markup.fi 'ecwid-admin-js', // Fixes Conflict for Ecwid Shopping Cart 'td-wp-admin-js', // Newspaper by tagDiv 'moment', // Screets Live Chat 'wpmf-base', // WP Media Folder Fix 'wpmf-media-filters', // WP Media Folder Fix 'wpmf-folder-tree', // WP Media Folder Fix 'wpmf-assign-tree', // WP Media Folder Fix 'js_files_for_wp_admin', // TagDiv Composer Fix 'tdb_js_files_for_wp_admin_last', // TagDiv Composer Fix 'tdb_js_files_for_wp_admin', // TagDiv Composer Fix 'wd-functions', // affiliate boxes 'ellk-aliExpansion', // Ali Dropship Plugin 'ftmetajs', // Houzez Theme 'qode_admin_default', // Fix For Stockholm Theme 'qodef-tax-js', // Fix for Prowess Theme 'qodef-user-js', // Fix for Prowess Theme 'qodef-ui-admin', // Fix for Prowess Theme 'ssi_script', // Fix for Add Social Share 'live_templates', // Fix for Add Social Share 'default', // Fix for Add Social Share 'handsontable', // Fix WP Tables 'moment-js', // Magee Shortcodes 'postbox', // Scripts from wp-admin enqueued everywhere by WP Posts Filter 'link', // Scripts from wp-admin enqueued everywhere by WP Posts Filter 'wpvr_scripts', // WP Video Robot 'wpvr_scripts_loaded', // WP Video Robot 'wpvr_scripts_assets', // WP Video Robot 'writee_widget_admin', // Fix for the Writtee theme '__ytprefs_admin__', // Fix for YouTube by EmbedPlus plugin 'momentjs', // Fix for Blog Time plugin 'c2c_BlogTime', // Fix for Blog Time plugin 'material-wp', // Fix for MaterialWP plugin 'wp-color-picker-alpha', // Fix for MaterialWP plugin 'grandtour-theme-script', // Grandtour Theme 'swifty-img-widget-admin-script', // Fix for Swifty Image Widget 'datatable', // WP Todo 'flipclock', // WP Todo 'bootstrap', // WP Todo 'repuso_js_admin', // Social testimonials and reviews by Repuso 'chart', // Video Mate Pro Theme 'reuse_vendor', // RedQ Reuse Form 'jetpack-onboarding-vendor', // Jetpack Onboarding Bluehost 'date-js', // Google Analytics by Web Dorado ); if ( ! empty( $styles ) ) { foreach ( $styles as $style ) { wp_dequeue_style( $style ); // Remove CSS file from MI screen wp_deregister_style( $style ); } } if ( ! empty( $scripts ) ) { foreach ( $scripts as $script ) { wp_dequeue_script( $script ); // Remove JS file from MI screen wp_deregister_script( $script ); } } $third_party = array( 'select2', 'sweetalert', 'clipboard', 'matchHeight', 'inputmask', 'jquery-confirm', 'list', 'toastr', 'tooltipster', 'flag-icon', 'bootstrap', ); global $wp_styles; foreach ( $wp_styles->queue as $handle ) { if ( strpos( $wp_styles->registered[ $handle ]->src, 'wp-content' ) === false ) { return; } if ( strpos( $wp_styles->registered[ $handle ]->handle, 'monsterinsights' ) !== false ) { return; } foreach ( $third_party as $partial ) { if ( strpos( $wp_styles->registered[ $handle ]->handle, $partial ) !== false ) { wp_dequeue_style( $handle ); // Remove css file from MI screen wp_deregister_style( $handle ); break; } else if ( strpos( $wp_styles->registered[ $handle ]->src, $partial ) !== false ) { wp_dequeue_style( $handle ); // Remove css file from MI screen wp_deregister_style( $handle ); break; } } } global $wp_scripts; foreach ( $wp_scripts->queue as $handle ) { if ( strpos( $wp_scripts->registered[ $handle ]->src, 'wp-content' ) === false ) { return; } if ( strpos( $wp_scripts->registered[ $handle ]->handle, 'monsterinsights' ) !== false ) { return; } foreach ( $third_party as $partial ) { if ( strpos( $wp_scripts->registered[ $handle ]->handle, $partial ) !== false ) { wp_dequeue_script( $handle ); // Remove JS file from MI screen wp_deregister_script( $handle ); break; } else if ( strpos( $wp_scripts->registered[ $handle ]->src, $partial ) !== false ) { wp_dequeue_script( $handle ); // Remove JS file from MI screen wp_deregister_script( $handle ); break; } } } // Remove actions from themes that are not following best practices and break the admin doing so // Theme: Newspaper by tagDiv remove_action( 'admin_enqueue_scripts', 'load_wp_admin_js' ); remove_action( 'admin_enqueue_scripts', 'load_wp_admin_css' ); remove_action( 'admin_print_scripts-widgets.php', 'td_on_admin_print_scripts_farbtastic' ); remove_action( 'admin_print_styles-widgets.php', 'td_on_admin_print_styles_farbtastic' ); remove_action( 'admin_print_footer_scripts', 'check_if_media_uploads_is_loaded', 9999 ); remove_action( 'print_media_templates', 'td_custom_gallery_settings_hook' ); remove_action( 'print_media_templates', 'td_change_backbone_js_hook' ); remove_action( 'admin_head', 'tdc_on_admin_head' ); // TagDiv Composer Fix remove_action( 'print_media_templates', 'us_media_templates' ); // Impreza Theme Fix remove_action( 'admin_footer', 'gt3pg_add_gallery_template' ); // GT3 Photo & Video Gallery By GT3 Themes Plugin Fix // Plugin WP Booklist: remove_action( 'admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_add_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_show_form_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_update_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_pagination_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_search_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_actual_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_user_apis_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_post_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_page_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_csv_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_amazon_localization_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_bulk_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_reorder_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_exit_results_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_select_category_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_get_story_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_save_settings_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_story_action_javascript' ); } add_action( 'admin_enqueue_scripts', 'monsterinsights_remove_conflicting_asset_files', 9999 ); /** * Remove non-MI notices from MI page. * * @return null Return early if not on the proper screen. * @since 6.0.0 * @access public * */ function hide_non_monsterinsights_warnings() { // Bail if we're not on a MonsterInsights screen. if ( empty( $_REQUEST['page'] ) || strpos( $_REQUEST['page'], 'monsterinsights' ) === false ) { return; } global $wp_filter; if ( ! empty( $wp_filter['user_admin_notices']->callbacks ) && is_array( $wp_filter['user_admin_notices']->callbacks ) ) { foreach ( $wp_filter['user_admin_notices']->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) { unset( $wp_filter['user_admin_notices']->callbacks[ $priority ][ $name ] ); continue; } if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'monsterinsights' ) !== false ) { continue; } if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === false ) { unset( $wp_filter['user_admin_notices']->callbacks[ $priority ][ $name ] ); } } } } if ( ! empty( $wp_filter['admin_notices']->callbacks ) && is_array( $wp_filter['admin_notices']->callbacks ) ) { foreach ( $wp_filter['admin_notices']->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) { unset( $wp_filter['admin_notices']->callbacks[ $priority ][ $name ] ); continue; } if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'monsterinsights' ) !== false ) { continue; } if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === false ) { unset( $wp_filter['admin_notices']->callbacks[ $priority ][ $name ] ); } } } } if ( ! empty( $wp_filter['all_admin_notices']->callbacks ) && is_array( $wp_filter['all_admin_notices']->callbacks ) ) { foreach ( $wp_filter['all_admin_notices']->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) { unset( $wp_filter['all_admin_notices']->callbacks[ $priority ][ $name ] ); continue; } if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'monsterinsights' ) !== false ) { continue; } if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === false ) { unset( $wp_filter['all_admin_notices']->callbacks[ $priority ][ $name ] ); } } } } } add_action( 'admin_print_scripts', 'hide_non_monsterinsights_warnings' ); add_action( 'admin_head', 'hide_non_monsterinsights_warnings', PHP_INT_MAX ); /** * Called whenever an upgrade button / link is displayed in Lite, this function will * check if there's a shareasale ID specified. * * There are three ways to specify an ID, ordered by highest to lowest priority * - add_filter( 'monsterinsights_shareasale_id', function() { return 1234; } ); * - define( 'MONSTERINSIGHTS_SHAREASALE_ID', 1234 ); * - get_option( 'monsterinsights_shareasale_id' ); (with the option being in the wp_options table) * * If an ID is present, returns the ShareASale link with the affiliate ID, and tells * ShareASale to then redirect to monsterinsights.com/lite * * If no ID is present, just returns the monsterinsights.com/lite URL with UTM tracking. * * @return string Upgrade link. * @since 6.0.0 * @access public * */ function monsterinsights_get_upgrade_link( $medium = '', $campaign = '', $url = '' ) { $url = monsterinsights_get_url( $medium, $campaign, $url, false ); if ( monsterinsights_is_pro_version() ) { return esc_url( $url ); } // Get the ShareASale ID $shareasale_id = monsterinsights_get_shareasale_id(); // If we have a shareasale ID return the shareasale url if ( ! empty( $shareasale_id ) ) { $shareasale_id = absint( $shareasale_id ); return esc_url( monsterinsights_get_shareasale_url( $shareasale_id, $url ) ); } else { return esc_url( $url ); } } function monsterinsights_get_url( $medium = '', $campaign = '', $url = '', $escape = true ) { // Setup Campaign variables $source = monsterinsights_is_pro_version() ? 'proplugin' : 'liteplugin'; $medium = ! empty( $medium ) ? $medium : 'defaultmedium'; $campaign = ! empty( $campaign ) ? $campaign : 'defaultcampaign'; $content = MONSTERINSIGHTS_VERSION; $default_url = monsterinsights_is_pro_version() ? '' : 'lite/'; $url = ! empty( $url ) ? $url : 'https://www.monsterinsights.com/' . $default_url; // Put together redirect URL $url = add_query_arg( array( 'utm_source' => $source, // Pro/Lite Plugin 'utm_medium' => sanitize_key( $medium ), // Area of MonsterInsights (example Reports) 'utm_campaign' => sanitize_key( $campaign ), // Which link (example eCommerce Report) 'utm_content' => $content, // Version number of MI ), trailingslashit( $url ) ); if ( $escape ) { return esc_url( $url ); } else { return $url; } } function monsterinsights_settings_ublock_error_js() { echo ""; } function monsterinsights_ublock_notice() { ob_start(); ?> id ) || strpos( $screen->id, 'monsterinsights' ) === false ) { return; } // Remove js code added by Newspaper theme - version 8.8.0. remove_action( 'print_media_templates', 'td_custom_gallery_settings_hook' ); remove_action( 'print_media_templates', 'td_change_backbone_js_hook' ); // Remove js code added by the Brooklyn theme - version 4.5.3.1. remove_action( 'print_media_templates', 'ut_create_gallery_options' ); // Remove js code added by WordPress Book List Plugin - version 5.8.1. remove_action( 'admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_add_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_show_form_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_update_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_pagination_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_search_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_actual_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_user_apis_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_post_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_page_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_csv_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_amazon_localization_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_bulk_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_reorder_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_exit_results_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_select_category_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_get_story_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_save_settings_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_story_action_javascript' ); } add_action( 'admin_head', 'monsterinsights_remove_unnecessary_footer_hooks', 15 ); /** * Prevent plugins/themes from removing the version number from scripts loaded by our plugin. * Ideally those plugins/themes would follow WordPress coding best practices, but in lieu of that * we can at least attempt to prevent 99% of them from doing bad things. * * @param string $src The script source. * * @return string */ function monsterinsights_prevent_version_number_removal( $src ) { // Apply this only to admin-side scripts. if ( ! is_admin() ) { return $src; } // Make sure are only changing our scripts and only if the version number is missing. if ( ( false !== strpos( $src, 'monsterinsights' ) || false !== strpos( $src, 'google-analytics-for-wordpress' ) || false !== strpos( $src, 'google-analytics-premium' ) ) && false === strpos( $src, '?ver' ) ) { $src = add_query_arg( 'ver', monsterinsights_get_asset_version(), $src ); } return $src; } add_filter( 'script_loader_src', 'monsterinsights_prevent_version_number_removal', 9999, 1 ); add_filter( 'style_loader_src', 'monsterinsights_prevent_version_number_removal', 9999, 1 ); /** * Data used for the Vue scripts to display old PHP and WP versions warnings. */ function monsterinsights_get_php_wp_version_warning_data() { global $wp_version; $compatible_php_version = apply_filters( 'monsterinsights_compatible_php_version', false ); $compatible_wp_version = apply_filters( 'monsterinsights_compatible_wp_version', false ); return array( 'php_version' => phpversion(), 'php_version_below_54' => apply_filters( 'monsterinsights_temporarily_hide_php_under_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '<' ) ), 'php_version_below_56' => apply_filters( 'monsterinsights_temporarily_hide_php_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '>=' ) && version_compare( phpversion(), $compatible_php_version['recommended'], '<' ) ), 'php_update_link' => monsterinsights_get_url( 'settings-notice', 'settings-page', 'https://www.monsterinsights.com/docs/update-php/' ), 'wp_version' => $wp_version, 'wp_version_below_46' => version_compare( $wp_version, $compatible_wp_version['warning'], '<' ), 'wp_version_below_49' => version_compare( $wp_version, $compatible_wp_version['recommended'], '<' ), 'wp_update_link' => monsterinsights_get_url( 'settings-notice', 'settings-page', 'https://www.monsterinsights.com/docs/update-wordpress/' ), ); } /** * Check WP and PHP version and add contextual notifications for upgrades. */ function monsterinsights_maybe_add_wp_php_version_notification() { global $wp_version; $icon = ''; $needs_php_warning = version_compare( phpversion(), '5.6', '<' ); $needs_wp_warning = version_compare( $wp_version, '4.9', '<' ); if ( $needs_php_warning ) { $notification['id'] = 'upgrade_php_56_notification'; $notification['title'] = __( 'ACTION REQUIRED: Your PHP version is putting your site at risk!', 'google-analytics-for-wordpress' ); if ( $needs_wp_warning ) { $notification['title'] = __( 'ACTION REQUIRED: Speed your website up 400% with a single email!', 'google-analytics-for-wordpress' ); } $php_url = monsterinsights_get_url( 'notifications', 'upgrade-php', 'https://www.monsterinsights.com/docs/update-php' ); $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' ); // Translators: Placeholder is for the current PHP version. $notification['content'] = sprintf( esc_html__( 'In the next major release of MonsterInsights we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster).', 'google-analytics-for-wordpress' ), phpversion() ) . "\n\n"; // Translators: Placeholders add a link to an article. $notification['content'] .= sprintf( esc_html__( 'To ensure MonsterInsights and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s.', 'google-analytics-for-wordpress' ), '', '' ) . "\n\n"; $notification['content'] .= esc_html__( 'Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!', 'google-analytics-for-wordpress' ); $notification['icon'] = $icon; $notification['btns'] = array( 'learn_more' => array( 'url' => $php_url, 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ), ), ); // Add the notification. MonsterInsights()->notifications->add( $notification ); } if ( $needs_wp_warning ) { $isitwp_url = 'https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/?utm_source=monsterinsights&utm_medium=notifications&utm_campaign=upgradewp'; $wpbeginner_url = 'https://www.wpbeginner.com/beginners-guide/why-you-should-always-use-the-latest-version-of-wordpress/utm_source=monsterinsights&utm_medium=notifications&utm_campaign=upgradewp'; $notification['id'] = 'upgrade_wp_49_notification'; $notification['title'] = __( 'ACTION REQUIRED: Your WordPress version is putting your site at risk!', 'google-analytics-for-wordpress' ); $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' ); // Translators: Placeholder is for the current WordPress version. $notification['content'] = sprintf( esc_html__( 'In the next major release of MonsterInsights we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!', 'google-analytics-for-wordpress' ), $wp_version ) . "\n\n"; $notification['content'] .= esc_html__( 'The good news: updating WordPress has never been easier and only takes a few moments.', 'google-analytics-for-wordpress' ); // Translators: Placeholders add links to articles. $notification['content'] .= sprintf( esc_html__( 'To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner.', 'google-analytics-for-wordpress' ), '', '', '', '' ) . "\n\n"; $notification['icon'] = $icon; $notification['btns'] = array( 'learn_more' => array( 'url' => $isitwp_url, 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ), ), ); // Add the notification. MonsterInsights()->notifications->add( $notification ); } } add_action( 'admin_init', 'monsterinsights_maybe_add_wp_php_version_notification' ); /** * Add notification for Year In Review report for year 2021. * * @since 7.13.2 * * @return void */ function monsterinsights_year_in_review_notification() { // Check if dates are between Jan 1st 2021 & 13th Jan 2021. if ( monsterinsights_date_is_between( '2021-01-01', '2021-01-14' ) ) { $notification['id'] = 'monsterinsights_notification_year_in_review'; $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' ); $notification['start'] = '2021-01-01'; $notification['end'] = '2021-01-14'; $notification['title'] = esc_html__( 'View 2020 Year in Review report!', 'google-analytics-for-wordpress' ); $notification['content'] = esc_html__( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ); $notification['btns'] = array( 'learn_more' => array( 'url' => esc_url( admin_url( 'admin.php?page=monsterinsights_reports#/year-in-review' ) ), 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ), ), ); // Add the notification. MonsterInsights()->notifications->add( $notification ); } } add_action( 'admin_init', 'monsterinsights_year_in_review_notification' );