• Не создавайте несколько учетных записей, вы будете заблокированы! Для получения дополнительной информации о правилах, ограничениях и многом другом посетите страницу «Помощь».
    Нашли неработающую ссылку? Используйте кнопку «Жалоба»!
Winden by DPlugins

Плагин Winden by DPlugins v3.3 NULLED

Простая интеграция Tailwind CSS для конструкторов страниц WordPress
Активатор:
PHP:
Расширить Свернуть Скопировать
/**
 * Bypass Winden Pro license checks and block external requests.
 */

// 1. Always consider the Pro license active.
add_filter('pre_option_winden_license', function($value) {
    return [
        'key'      => 'local-test-key',
        'status'   => \Winden\Pro\License\Enums\LicenseStatus::ACTIVATED,
        'checkedAt' => current_time('mysql', true),
    ];
});

// 2. Block any HTTP requests to dplugins.com and return mock responses.
add_filter('pre_http_request', function($pre, $parsed_args, $url) {
    if (strpos($url, 'dplugins.com') !== false) {
        // Mock a successful license check response.
        if (strpos($url, 'edd_action=check_license') !== false) {
            return [
                'response' => ['code' => 200, 'message' => 'OK'],
                'body'     => json_encode(['license' => 'valid']),
            ];
        }
        // Mock a “no update” response.
        if (strpos($url, 'edd_action=get_version') !== false) {
            return [
                'response' => ['code' => 200, 'message' => 'OK'],
                'body'     => json_encode(['new_version' => WINDTACS_VERSION]),
            ];
        }
        // For any other request, return a generic success.
        return [
            'response' => ['code' => 200, 'message' => 'OK'],
            'body'     => json_encode(['success' => true]),
        ];
    }
    return $pre;
}, 10, 3);

// 3. Remove the update transients hooks if they still try to call out.
add_action('init', function() {
    // If the Release class is already loaded, unhook its methods.
    if (class_exists('Winden\Pro\Admin\Release')) {
        $release_instance = new \Winden\Pro\Admin\Release();
        remove_filter('pre_set_site_transient_update_plugins', [$release_instance, 'checkRelease']);
        remove_filter('plugins_api', [$release_instance, 'releaseDeatil'], 10);
    }
}, 20);

Editor Experience
  • Reorder & hide editor tabs - Drag tabs to rearrange or hide unused tabs
  • Unsaved changes protection - Browser warns before leaving with unsaved work
  • Style tab content preservation - Custom CSS now preserved when toggling tabs on/off
  • Improved error visibility - Cache errors highlighted with red color and warning icon
  • Better tab labels - Clearer descriptions for "Main Style" tab, removed confusing lock icon
Wizard
  • Simplified scale calculator - Replaced "mega/giga" jargon with familiar Tailwind defaults
Performance & Reliability
  • Fixed cache collisions - Large config files now compile reliably without stale CSS
  • Improved class detection - Removed classes now properly disappear from output
  • CDN plugin loading - Automatic retry on failure with 10-second timeout
  • Security improvements - Added security checks to compilation endpoints
  • Tested with WordPress 7.0
Bug Fixes
  • Fixed Monaco editor autocomplete appearing at wrong times
  • Fixed false "content changed elsewhere" warnings
  • Fixed Bricks Builder autocomplete hover issues
  • Fixed Oxygen Classic integration
  • Fixed color value validation and reset functionality
  • Fixed rare SCSS hang when another plugin already loaded Sass
  • Fixed tab visibility flash on page load
  • Fixed double class instantiation issues
Реакции:
Скачать Winden by DPlugins v2.9 NULLED
Реакции:
Назад
Сверху Снизу