• Hi dear,

    I’m Thomas from WP Umbrella.

    We’ve detected an incompatibility with your plugin and haven’t found any filters available to us to graft and make us compatible with you.

    To do this, we’d have to intervene in the same place as you do with Itheme:

    /**
    
    * The method checks the compatibility of the plugin with php and wordpress version.
    
    *
    
    * @since 4.1.1
    
    * @return bool
    
    */
    
    public function check() {
    
    // Fix for ithemes sync. When the ithemes sync plugin accepts the request, set the WP_ADMIN constant,
    
    // after which the plugin Clearfy begins to create errors, and how the logic of its work is broken.
    
    // Solution to simply terminate the plugin if there is a request from ithemes sync
    
    // --------------------------------------
    
    if ( defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'ithemes_sync_request' ) {
    
    return false;
    
    }
    
    if ( isset( $_GET['ithemes-sync-request'] ) && ! empty( $_GET['ithemes-sync-request'] ) ) {
    
    return false;
    
    }
    
    // ----------------------------------------
    
    if ( ! $this->check_php_compat() || ! $this->check_wp_compat() || $this->plugin_already_activate ) {
    
    return false;
    
    }
    
    return true;
    
    }

    Thanks for your help

    Gmulti

  • The topic ‘Need Compatibility with WP Umbrella’ is closed to new replies.