| @@ -27,8 +27,15 @@ | ||
| 27 | 27 | */ |
| 28 | 28 | protected $filepath = null; |
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | + * Critical CSS base object | |
| 32 | + * | |
| 33 | + * @var object | |
| 34 | + */ | |
| 35 | + protected $_criticalcss = null; | |
| 36 | + | |
| 37 | + /** | |
| 31 | 38 | * Constructor. |
| 32 | 39 | * |
| 33 | 40 | * @param string $version Version. |
| 34 | 41 | * @param string $filepath Filepath. Needed for activation/deactivation/uninstall hooks. |
| @@ -58,15 +65,15 @@ | ||
| 58 | 65 | add_action( AUTOPTIMIZE_SETUP_INITHOOK, array( $this, 'hook_page_cache_purge' ) ); |
| 59 | 66 | |
| 60 | 67 | add_action( 'autoptimize_setup_done', array( $this, 'version_upgrades_check' ) ); |
| 61 | 68 | add_action( 'autoptimize_setup_done', array( $this, 'check_cache_and_run' ) ); |
| 69 | + add_action( 'autoptimize_setup_done', array( $this, 'maybe_run_ao_compat' ), 10 ); | |
| 62 | 70 | add_action( 'autoptimize_setup_done', array( $this, 'maybe_run_ao_extra' ), 15 ); |
| 63 | - add_action( 'autoptimize_setup_done', array( $this, 'maybe_run_partners_tab' ), 20 ); | |
| 71 | + add_action( 'autoptimize_setup_done', array( $this, 'maybe_run_admin_only_trinkets' ), 20 ); | |
| 64 | 72 | add_action( 'autoptimize_setup_done', array( $this, 'maybe_run_criticalcss' ), 11 ); |
| 65 | 73 | add_action( 'autoptimize_setup_done', array( $this, 'maybe_run_notfound_fallback' ), 10 ); |
| 66 | 74 | |
| 67 | 75 | add_action( 'init', array( $this, 'load_textdomain' ) ); |
| 68 | - add_action( 'admin_init', array( 'PAnD', 'init' ) ); | |
| 69 | 76 | |
| 70 | 77 | if ( is_multisite() && is_admin() ) { |
| 71 | 78 | // Only if multisite and if in admin we want to check if we need to save options on network level. |
| 72 | 79 | add_action( 'init', 'autoptimizeOptionWrapper::check_multisite_on_saving_options' ); |
| @@ -186,8 +193,12 @@ | ||
| 186 | 193 | // And disable Jetpack's site accelerator if JS or CSS opt. are active. |
| 187 | 194 | if ( class_exists( 'Jetpack' ) && apply_filters( 'autoptimize_filter_main_disable_jetpack_cdn', true ) && ( $conf->get( 'autoptimize_js' ) || $conf->get( 'autoptimize_css' ) ) ) { |
| 188 | 195 | add_filter( 'jetpack_force_disable_site_accelerator', '__return_true' ); |
| 189 | 196 | } |
| 197 | + | |
| 198 | + // Add "no cache found" notice. | |
| 199 | + add_action( 'admin_notices', 'autoptimizeMain::notice_nopagecache', 99 ); | |
| 200 | + add_action( 'admin_notices', 'autoptimizeMain::notice_potential_conflict', 99 ); | |
| 190 | 201 | } |
| 191 | 202 | } else { |
| 192 | 203 | add_action( 'admin_notices', 'autoptimizeMain::notice_cache_unavailable' ); |
| 193 | 204 | } |
| @@ -205,21 +216,33 @@ | ||
| 205 | 216 | add_action( 'admin_notices', 'autoptimizeMain::notice_plug_imgopt' ); |
| 206 | 217 | } |
| 207 | 218 | } |
| 208 | 219 | |
| 209 | - public function maybe_run_partners_tab() | |
| 220 | + public function maybe_run_admin_only_trinkets() | |
| 210 | 221 | { |
| 211 | - // Loads partners tab code if in admin (and not in admin-ajax.php)! | |
| 222 | + // Loads partners tab and exit survey code if in admin (and not in admin-ajax.php)! | |
| 212 | 223 | if ( autoptimizeConfig::is_admin_and_not_ajax() ) { |
| 213 | 224 | new autoptimizePartners(); |
| 225 | + new autoptimizeExitSurvey(); | |
| 214 | 226 | } |
| 215 | 227 | } |
| 216 | 228 | |
| 229 | + public function criticalcss() | |
| 230 | + { | |
| 231 | + if ( apply_filters( 'autoptimize_filter_criticalcss_active', true ) && ! autoptimizeUtils::is_plugin_active( 'autoptimize-criticalcss/ao_criticss_aas.php' ) ) { | |
| 232 | + return $this->_criticalcss; | |
| 233 | + } else { | |
| 234 | + return false; | |
| 235 | + } | |
| 236 | + } | |
| 237 | + | |
| 217 | 238 | public function maybe_run_criticalcss() |
| 218 | 239 | { |
| 219 | - // Loads criticalcss if the power-up is not active and if the filter returns true. | |
| 240 | + // Loads criticalcss if the filter returns true & old power-up is not active. | |
| 220 | 241 | if ( apply_filters( 'autoptimize_filter_criticalcss_active', true ) && ! autoptimizeUtils::is_plugin_active( 'autoptimize-criticalcss/ao_criticss_aas.php' ) ) { |
| 221 | - new autoptimizeCriticalCSSBase(); | |
| 242 | + $this->_criticalcss = new autoptimizeCriticalCSSBase(); | |
| 243 | + $this->_criticalcss->setup(); | |
| 244 | + $this->_criticalcss->load_requires(); | |
| 222 | 245 | } |
| 223 | 246 | } |
| 224 | 247 | |
| 225 | 248 | public function maybe_run_notfound_fallback() |
| @@ -228,8 +251,25 @@ | ||
| 228 | 251 | add_action( 'template_redirect', array( 'autoptimizeCache', 'wordpress_notfound_fallback' ) ); |
| 229 | 252 | } |
| 230 | 253 | } |
| 231 | 254 | |
| 255 | + public function maybe_run_ao_compat() | |
| 256 | + { | |
| 257 | + // Condtionally loads the compatibility-class to ensure more out-of-the-box compatibility with big players. | |
| 258 | + $_run_compat = true; | |
| 259 | + | |
| 260 | + if ( autoptimizeOptionWrapper::get_option( 'autoptimize_installed_before_compatibility', false ) ) { | |
| 261 | + // If AO was already running before Compatibility logic was added, don't run compat by default | |
| 262 | + // because it can be assumed everything works and we want to avoid (perf) regressions that | |
| 263 | + // could occur due to compatibility code. | |
| 264 | + $_run_compat = false; | |
| 265 | + } | |
| 266 | + | |
| 267 | + if ( apply_filters( 'autoptimize_filter_init_compatibility', $_run_compat ) ) { | |
| 268 | + new autoptimizeCompatibility(); | |
| 269 | + } | |
| 270 | + } | |
| 271 | + | |
| 232 | 272 | public function hook_page_cache_purge() |
| 233 | 273 | { |
| 234 | 274 | // hook into a collection of page cache purge actions if filter allows. |
| 235 | 275 | if ( apply_filters( 'autoptimize_filter_main_hookpagecachepurge', true ) ) { |
| @@ -349,13 +389,14 @@ | ||
| 349 | 389 | } |
| 350 | 390 | } |
| 351 | 391 | } |
| 352 | 392 | |
| 353 | - // And make sure pagebuilder previews don't get optimized HTML/ JS/ CSS/ ... | |
| 393 | + // Misc. querystring paramaters that will stop AO from doing optimizations (pagebuilders + | |
| 394 | + // 2 generic parameters that could/ should become standard between optimization plugins?) | |
| 354 | 395 | if ( false === $ao_noptimize ) { |
| 355 | - $_qs_pagebuilders = array( 'tve', 'elementor-preview', 'fl_builder', 'vc_action', 'et_fb', 'bt-beaverbuildertheme', 'ct_builder', 'fb-edit', 'siteorigin_panels_live_editor' ); | |
| 356 | - foreach ( $_qs_pagebuilders as $_pagebuilder ) { | |
| 357 | - if ( array_key_exists( $_pagebuilder, $_GET ) ) { | |
| 396 | + $_qs_showstoppers = array( 'no_cache', 'no_optimize', 'tve', 'elementor-preview', 'fl_builder', 'vc_action', 'et_fb', 'bt-beaverbuildertheme', 'ct_builder', 'fb-edit', 'siteorigin_panels_live_editor', 'preview' ); | |
| 397 | + foreach ( $_qs_showstoppers as $_showstopper ) { | |
| 398 | + if ( array_key_exists( $_showstopper, $_GET ) ) { | |
| 358 | 399 | $ao_noptimize = true; |
| 359 | 400 | break; |
| 360 | 401 | } |
| 361 | 402 | } |
| @@ -366,8 +407,13 @@ | ||
| 366 | 407 | if ( false === $ao_noptimize && array_key_exists( 'PageSpeed', $_GET ) && 'off' === $_GET['PageSpeed'] ) { |
| 367 | 408 | $ao_noptimize = true; |
| 368 | 409 | } |
| 369 | 410 | |
| 411 | + // If page/ post check post_meta to see if optimize is off. | |
| 412 | + if ( false === autoptimizeConfig::get_post_meta_ao_settings( 'ao_post_optimize' ) ) { | |
| 413 | + $ao_noptimize = true; | |
| 414 | + } | |
| 415 | + | |
| 370 | 416 | // And finally allows blocking of autoptimization on your own terms regardless of above decisions. |
| 371 | 417 | $ao_noptimize = (bool) apply_filters( 'autoptimize_filter_noptimize', $ao_noptimize ); |
| 372 | 418 | |
| 373 | 419 | // Check for site being previewed in the Customizer (available since WP 4.0). |
| @@ -430,16 +476,31 @@ | ||
| 430 | 476 | * @return bool |
| 431 | 477 | */ |
| 432 | 478 | public static function is_amp_markup( $content ) |
| 433 | 479 | { |
| 434 | - // Short-circuit when a function is available to determine whether the response is (or will be) an AMP page. | |
| 435 | - if ( function_exists( 'is_amp_endpoint' ) ) { | |
| 436 | - return is_amp_endpoint(); | |
| 480 | + // Short-circuit if the page is already AMP from the start. | |
| 481 | + if ( | |
| 482 | + preg_match( | |
| 483 | + sprintf( | |
| 484 | + '#^(?:<!.*?>|\s+)*+<html(?=\s)[^>]*?\s(%1$s|%2$s|%3$s)(\s|=|>)#is', | |
| 485 | + 'amp', | |
| 486 | + "\xE2\x9A\xA1", // From \AmpProject\Attribute::AMP_EMOJI. | |
| 487 | + "\xE2\x9A\xA1\xEF\xB8\x8F" // From \AmpProject\Attribute::AMP_EMOJI_ALT, per https://github.com/ampproject/amphtml/issues/25990. | |
| 488 | + ), | |
| 489 | + $content | |
| 490 | + ) | |
| 491 | + ) { | |
| 492 | + return true; | |
| 437 | 493 | } |
| 438 | 494 | |
| 439 | - $is_amp_markup = preg_match( '/<html[^>]*(?:amp|âš¡)/i', $content ); | |
| 495 | + // Or else short-circuit if the AMP plugin will be processing the output to be an AMP page. | |
| 496 | + if ( function_exists( 'amp_is_request' ) ) { | |
| 497 | + return amp_is_request(); // For AMP plugin v2.0+. | |
| 498 | + } elseif ( function_exists( 'is_amp_endpoint' ) ) { | |
| 499 | + return is_amp_endpoint(); // For older/other AMP plugins (still supported in 2.0 as an alias). | |
| 500 | + } | |
| 440 | 501 | |
| 441 | - return (bool) $is_amp_markup; | |
| 502 | + return false; | |
| 442 | 503 | } |
| 443 | 504 | |
| 444 | 505 | /** |
| 445 | 506 | * Processes/optimizes the output-buffered content and returns it. |
| @@ -471,16 +532,18 @@ | ||
| 471 | 532 | } |
| 472 | 533 | |
| 473 | 534 | $classoptions = array( |
| 474 | 535 | 'autoptimizeScripts' => array( |
| 475 | - 'aggregate' => $conf->get( 'autoptimize_js_aggregate' ), | |
| 476 | - 'justhead' => $conf->get( 'autoptimize_js_justhead' ), | |
| 477 | - 'forcehead' => $conf->get( 'autoptimize_js_forcehead' ), | |
| 478 | - 'trycatch' => $conf->get( 'autoptimize_js_trycatch' ), | |
| 479 | - 'js_exclude' => $conf->get( 'autoptimize_js_exclude' ), | |
| 480 | - 'cdn_url' => $conf->get( 'autoptimize_cdn_url' ), | |
| 481 | - 'include_inline' => $conf->get( 'autoptimize_js_include_inline' ), | |
| 482 | - 'minify_excluded' => $conf->get( 'autoptimize_minify_excluded' ), | |
| 536 | + 'aggregate' => $conf->get( 'autoptimize_js_aggregate' ), | |
| 537 | + 'defer_not_aggregate' => $conf->get( 'autoptimize_js_defer_not_aggregate' ), | |
| 538 | + 'defer_inline' => $conf->get( 'autoptimize_js_defer_inline' ), | |
| 539 | + 'justhead' => $conf->get( 'autoptimize_js_justhead' ), | |
| 540 | + 'forcehead' => $conf->get( 'autoptimize_js_forcehead' ), | |
| 541 | + 'trycatch' => $conf->get( 'autoptimize_js_trycatch' ), | |
| 542 | + 'js_exclude' => $conf->get( 'autoptimize_js_exclude' ), | |
| 543 | + 'cdn_url' => $conf->get( 'autoptimize_cdn_url' ), | |
| 544 | + 'include_inline' => $conf->get( 'autoptimize_js_include_inline' ), | |
| 545 | + 'minify_excluded' => $conf->get( 'autoptimize_minify_excluded' ), | |
| 483 | 546 | ), |
| 484 | 547 | 'autoptimizeStyles' => array( |
| 485 | 548 | 'aggregate' => $conf->get( 'autoptimize_css_aggregate' ), |
| 486 | 549 | 'justhead' => $conf->get( 'autoptimize_css_justhead' ), |
| @@ -532,10 +595,17 @@ | ||
| 532 | 595 | } |
| 533 | 596 | |
| 534 | 597 | public static function on_uninstall() |
| 535 | 598 | { |
| 599 | + // clear the cache. | |
| 536 | 600 | autoptimizeCache::clearall(); |
| 537 | 601 | |
| 602 | + // remove postmeta if active. | |
| 603 | + if ( autoptimizeConfig::is_ao_meta_settings_active() ) { | |
| 604 | + delete_post_meta_by_key( 'ao_post_optimize' ); | |
| 605 | + } | |
| 606 | + | |
| 607 | + // remove all options. | |
| 538 | 608 | $delete_options = array( |
| 539 | 609 | 'autoptimize_cache_clean', |
| 540 | 610 | 'autoptimize_cache_nogzip', |
| 541 | 611 | 'autoptimize_css', |
| @@ -548,10 +618,13 @@ | ||
| 548 | 618 | 'autoptimize_css_exclude', |
| 549 | 619 | 'autoptimize_html', |
| 550 | 620 | 'autoptimize_html_keepcomments', |
| 551 | 621 | 'autoptimize_enable_site_config', |
| 622 | + 'autoptimize_enable_meta_ao_settings', | |
| 552 | 623 | 'autoptimize_js', |
| 553 | 624 | 'autoptimize_js_aggregate', |
| 625 | + 'autoptimize_js_defer_not_aggregate', | |
| 626 | + 'autoptimize_js_defer_inline', | |
| 554 | 627 | 'autoptimize_js_exclude', |
| 555 | 628 | 'autoptimize_js_forcehead', |
| 556 | 629 | 'autoptimize_js_justhead', |
| 557 | 630 | 'autoptimize_js_trycatch', |
| @@ -575,8 +648,9 @@ | ||
| 575 | 648 | 'autoptimize_ccss_queue', |
| 576 | 649 | 'autoptimize_ccss_viewport', |
| 577 | 650 | 'autoptimize_ccss_finclude', |
| 578 | 651 | 'autoptimize_ccss_rlimit', |
| 652 | + 'autoptimize_ccss_rtimelimit', | |
| 579 | 653 | 'autoptimize_ccss_noptimize', |
| 580 | 654 | 'autoptimize_ccss_debug', |
| 581 | 655 | 'autoptimize_ccss_key', |
| 582 | 656 | 'autoptimize_ccss_keyst', |
| @@ -585,8 +659,9 @@ | ||
| 585 | 659 | 'autoptimize_ccss_forcepath', |
| 586 | 660 | 'autoptimize_ccss_deferjquery', |
| 587 | 661 | 'autoptimize_ccss_domain', |
| 588 | 662 | 'autoptimize_ccss_unloadccss', |
| 663 | + 'autoptimize_installed_before_compatibility', | |
| 589 | 664 | ); |
| 590 | 665 | |
| 591 | 666 | if ( ! is_multisite() ) { |
| 592 | 667 | foreach ( $delete_options as $del_opt ) { |
| @@ -613,8 +688,14 @@ | ||
| 613 | 688 | // fixme: should check for subdirs when in multisite and remove contents of those as well. |
| 614 | 689 | array_map( 'unlink', glob( $ao_ccss_dir . '*.{css,html,json,log,zip,lock}', GLOB_BRACE ) ); |
| 615 | 690 | rmdir( $ao_ccss_dir ); |
| 616 | 691 | } |
| 692 | + | |
| 693 | + // Remove 404-handler (although that should have been removed in clearall already). | |
| 694 | + $_fallback_php = trailingslashit( WP_CONTENT_DIR ) . 'autoptimize_404_handler.php'; | |
| 695 | + if ( file_exists( $_fallback_php ) ) { | |
| 696 | + unlink( $_fallback_php ); | |
| 697 | + } | |
| 617 | 698 | } |
| 618 | 699 | |
| 619 | 700 | public static function on_deactivation() |
| 620 | 701 | { |
| @@ -634,9 +715,9 @@ | ||
| 634 | 715 | } |
| 635 | 716 | |
| 636 | 717 | public static function remove_cronjobs() { |
| 637 | 718 | // Remove scheduled events. |
| 638 | - foreach ( array( 'ao_cachechecker', 'ao_ccss_queue', 'ao_ccss_maintenance' ) as $_event ) { | |
| 719 | + foreach ( array( 'ao_cachechecker', 'ao_ccss_queue', 'ao_ccss_maintenance', 'ao_ccss_keychecker' ) as $_event ) { | |
| 639 | 720 | if ( wp_get_schedule( $_event ) ) { |
| 640 | 721 | wp_clear_scheduled_hook( $_event ); |
| 641 | 722 | } |
| 642 | 723 | } |
| @@ -652,9 +733,9 @@ | ||
| 652 | 733 | |
| 653 | 734 | public static function notice_installed() |
| 654 | 735 | { |
| 655 | 736 | echo '<div class="updated"><p>'; |
| 656 | - _e( 'Thank you for installing and activating Autoptimize. Please configure it under "Settings" -> "Autoptimize" to start improving your site\'s performance.', 'autoptimize' ); | |
| 737 | + printf( __( 'Thank you for installing and activating Autoptimize. Please configure it under %sSettings -> Autoptimize%s to start improving your site\'s performance.', 'autoptimize' ), '<a href="options-general.php?page=autoptimize">', '</a>' ); | |
| 657 | 738 | echo '</p></div>'; |
| 658 | 739 | } |
| 659 | 740 | |
| 660 | 741 | public static function notice_updated() |
| @@ -666,17 +747,61 @@ | ||
| 666 | 747 | |
| 667 | 748 | public static function notice_plug_imgopt() |
| 668 | 749 | { |
| 669 | 750 | // Translators: the URL added points to the Autopmize Extra settings. |
| 670 | - $_ao_imgopt_plug_notice = sprintf( __( 'Did you know Autoptimize includes on-the-fly image optimization (with support for WebP) and CDN via ShortPixel? Check out the %1$sAutoptimize Image settings%2$s to activate this option.', 'autoptimize' ), '<a href="options-general.php?page=autoptimize_imgopt">', '</a>' ); | |
| 751 | + $_ao_imgopt_plug_notice = sprintf( __( 'Did you know Autoptimize includes on-the-fly image optimization (with support for WebP and AVIF) and CDN via ShortPixel? Check out the %1$sAutoptimize Image settings%2$s to activate this option.', 'autoptimize' ), '<a href="options-general.php?page=autoptimize_imgopt">', '</a>' ); | |
| 671 | 752 | $_ao_imgopt_plug_notice = apply_filters( 'autoptimize_filter_main_imgopt_plug_notice', $_ao_imgopt_plug_notice ); |
| 672 | 753 | $_ao_imgopt_launch_ok = autoptimizeImages::launch_ok_wrapper(); |
| 673 | 754 | $_ao_imgopt_plug_dismissible = 'ao-img-opt-plug-123'; |
| 674 | 755 | $_ao_imgopt_active = autoptimizeImages::imgopt_active(); |
| 756 | + $_is_ao_settings_page = autoptimizeUtils::is_ao_settings(); | |
| 675 | 757 | |
| 676 | - if ( current_user_can( 'manage_options' ) && '' !== $_ao_imgopt_plug_notice && ! $_ao_imgopt_active && $_ao_imgopt_launch_ok && PAnD::is_admin_notice_active( $_ao_imgopt_plug_dismissible ) ) { | |
| 758 | + if ( current_user_can( 'manage_options' ) && $_is_ao_settings_page && '' !== $_ao_imgopt_plug_notice && ! $_ao_imgopt_active && $_ao_imgopt_launch_ok && PAnD::is_admin_notice_active( $_ao_imgopt_plug_dismissible ) ) { | |
| 677 | 759 | echo '<div class="notice notice-info is-dismissible" data-dismissible="' . $_ao_imgopt_plug_dismissible . '"><p>'; |
| 678 | 760 | echo $_ao_imgopt_plug_notice; |
| 679 | 761 | echo '</p></div>'; |
| 762 | + } | |
| 763 | + } | |
| 764 | + | |
| 765 | + public static function notice_nopagecache() | |
| 766 | + { | |
| 767 | + /* | |
| 768 | + * Autoptimize does not do page caching (yet) but not everyone knows, so below logic tries to find out if page caching is available and if not show a notice on the AO Settings pages. | |
| 769 | + * | |
| 770 | + * uses helper function in autoptimizeUtils.php | |
| 771 | + */ | |
| 772 | + $_ao_nopagecache_notice = __( 'It looks like your site might not have <strong>page caching</strong> which is a <strong>must-have for performance</strong>. If you are sure you have a page cache, you can close this notice, but when in doubt check with your host if they offer this or install a page caching plugin like for example', 'autoptimize' ); | |
| 773 | + $_ao_pagecache_install_url = network_admin_url() . 'plugin-install.php?tab=search&type=term&s='; | |
| 774 | + $_ao_nopagecache_notice .= ' <a href="' . $_ao_pagecache_install_url . 'wp+super+cache' . '">WP Super Cache</a>, <a href="' . $_ao_pagecache_install_url . 'keycdn+cache+enabler' . '">KeyCDN Cache Enabler</a>, ...'; | |
| 775 | + $_ao_nopagecache_dismissible = 'ao-nopagecache-forever'; // the notice is only shown once and will not re-appear when dismissed. | |
| 776 | + $_is_ao_settings_page = autoptimizeUtils::is_ao_settings(); | |
| 777 | + | |
| 778 | + if ( current_user_can( 'manage_options' ) && $_is_ao_settings_page && PAnD::is_admin_notice_active( $_ao_nopagecache_dismissible ) && true === apply_filters( 'autoptimize_filter_main_show_pagecache_notice', true ) ) { | |
| 779 | + if ( false === autoptimizeUtils::find_pagecache() ) { | |
| 780 | + echo '<div class="notice notice-info is-dismissible" data-dismissible="' . $_ao_nopagecache_dismissible . '"><p>'; | |
| 781 | + echo $_ao_nopagecache_notice; | |
| 782 | + echo '</p></div>'; | |
| 783 | + } | |
| 784 | + } | |
| 785 | + } | |
| 786 | + | |
| 787 | + public static function notice_potential_conflict() | |
| 788 | + { | |
| 789 | + /* | |
| 790 | + * Using other plugins to do CSS/ JS optimization can cause unexpected and hard to troubleshoot issues, warn users who seem to be in that situation. | |
| 791 | + */ | |
| 792 | + // Translators: the sentence will be finished with the name of the offending plugin and a final stop. | |
| 793 | + $_ao_potential_conflict_notice = __( 'It looks like you have <strong>another plugin also doing CSS and/ or JS optimization</strong>, which can result in hard to troubleshoot <strong>conflicts</strong>. For this reason it is recommended to disable this functionality in', 'autoptimize' ) . ' '; | |
| 794 | + $_ao_potential_conflict_dismissible = 'ao-potential-conflict-forever'; // the notice is only shown once and will not re-appear when dismissed. | |
| 795 | + $_is_ao_settings_page = autoptimizeUtils::is_ao_settings(); | |
| 796 | + | |
| 797 | + if ( current_user_can( 'manage_options' ) && $_is_ao_settings_page && PAnD::is_admin_notice_active( $_ao_potential_conflict_dismissible ) && true === apply_filters( 'autoptimize_filter_main_show_potential_conclict_notice', true ) ) { | |
| 798 | + $_potential_conflicts = autoptimizeUtils::find_potential_conflicts(); | |
| 799 | + if ( false !== $_potential_conflicts ) { | |
| 800 | + $_ao_potential_conflict_notice .= '<strong>' . $_potential_conflicts . '</strong>.'; | |
| 801 | + echo '<div class="notice notice-info is-dismissible" data-dismissible="' . $_ao_potential_conflict_dismissible . '"><p>'; | |
| 802 | + echo $_ao_potential_conflict_notice; | |
| 803 | + echo '</p></div>'; | |
| 804 | + } | |
| 680 | 805 | } |
| 681 | 806 | } |
| 682 | 807 | } |