parsers
5 years ago
admin.php
5 years ago
core.php
5 years ago
engine.php
5 years ago
init.php
5 years ago
parsers.php
5 years ago
rest.php
5 years ago
support.php
5 years ago
ui.php
5 years ago
support.php
94 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_WPMC_Support { |
| 4 | |
| 5 | static function get_issues() { |
| 6 | $unsupported = array(); |
| 7 | |
| 8 | if ( class_exists( 'ACF' ) || function_exists( 'acfw_globals' ) ) |
| 9 | array_push( $unsupported, 'ACF' ); |
| 10 | |
| 11 | if ( function_exists( '_et_core_find_latest' ) ) |
| 12 | array_push( $unsupported, 'Divi' ); |
| 13 | |
| 14 | if ( class_exists( 'Vc_Manager' ) ) |
| 15 | array_push( $unsupported, 'Visual Composer' ); |
| 16 | |
| 17 | if ( function_exists( 'fusion_builder_map' ) ) |
| 18 | array_push( $unsupported, 'Fusion Builder' ); |
| 19 | |
| 20 | if ( function_exists( 'elementor_load_plugin_textdomain' ) ) |
| 21 | array_push( $unsupported, 'Elementor' ); |
| 22 | |
| 23 | if ( class_exists( 'FLBuilderModel' ) ) |
| 24 | array_push( $unsupported, 'Beaver Builder' ); |
| 25 | |
| 26 | if ( class_exists( 'Oxygen_VSB_Dynamic_Shortcodes' ) ) |
| 27 | array_push( $unsupported, 'Oxygen Builder' ); |
| 28 | |
| 29 | if ( class_exists( 'Brizy_Editor_Post' ) ) |
| 30 | array_push( $unsupported, 'Brizy Editor' ); |
| 31 | |
| 32 | if ( function_exists( 'amd_zlrecipe_convert_to_recipe' ) ) |
| 33 | array_push( $unsupported, 'ZipList Recipe' ); |
| 34 | |
| 35 | if ( class_exists( 'UberMenu' ) ) |
| 36 | array_push( $unsupported, 'UberMenu' ); |
| 37 | |
| 38 | if ( class_exists( 'X_Bootstrap' ) ) |
| 39 | array_push( $unsupported, 'Theme X' ); |
| 40 | |
| 41 | if ( class_exists( 'SiteOrigin_Panels' ) ) |
| 42 | array_push( $unsupported, 'SiteOrigin PageBuilder' ); |
| 43 | |
| 44 | if ( defined( 'TASTY_PINS_PLUGIN_FILE' ) ) |
| 45 | array_push( $unsupported, 'Tasty Pins' ); |
| 46 | |
| 47 | if ( class_exists( 'WCFMmp' ) ) |
| 48 | array_push( $unsupported, 'WCFM Marketplace' ); |
| 49 | |
| 50 | if ( class_exists( 'RevSliderFront' ) ) |
| 51 | array_push( $unsupported, 'Revolution Slider' ); |
| 52 | |
| 53 | if ( defined( 'WPESTATE_PLUGIN_URL' ) ) |
| 54 | array_push( $unsupported, 'WP Residence' ); |
| 55 | |
| 56 | if ( defined( 'AV_FRAMEWORK_VERSION' ) ) |
| 57 | array_push( $unsupported, 'Avia Framework' ); |
| 58 | |
| 59 | if ( class_exists( 'FAT_Portfolio' ) ) |
| 60 | array_push( $unsupported, 'FAT Portfolio' ); |
| 61 | |
| 62 | if ( class_exists( 'YIKES_Custom_Product_Tabs' ) ) |
| 63 | array_push( $unsupported, 'Yikes Custom Product Tabs' ); |
| 64 | |
| 65 | if ( function_exists( 'drts' ) ) |
| 66 | array_push( $unsupported, 'Directories' ); |
| 67 | |
| 68 | if ( class_exists( 'ImageMapPro' ) ) |
| 69 | array_push( $unsupported, 'Image Map Pro' ); |
| 70 | |
| 71 | if ( class_exists( 'YOOtheme\Builder\Wordpress\BuilderListener' ) ) { |
| 72 | array_push( $unsupported, 'YooTheme Builder' ); |
| 73 | } |
| 74 | |
| 75 | if ( class_exists( 'geodirectory' ) ) { |
| 76 | array_push( $unsupported, 'GeoDirectory' ); |
| 77 | } |
| 78 | |
| 79 | if ( class_exists( 'JustifiedImageGrid' ) ) { |
| 80 | array_push( $unsupported, 'Justified Image Grid' ); |
| 81 | } |
| 82 | |
| 83 | if ( class_exists( 'Advanced_Ads' ) ) { |
| 84 | array_push( $unsupported, 'Advanced Ads' ); |
| 85 | } |
| 86 | |
| 87 | if ( function_exists( 'smart_slider_3_plugins_loaded' ) ) { |
| 88 | array_push( $unsupported, 'Smart Slider' ); |
| 89 | } |
| 90 | |
| 91 | return $unsupported; |
| 92 | } |
| 93 | } |
| 94 | ?> |