HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/hcp/public_html/wp-content/plugins/jet-tabs/templates/admin-templates/general-settings.php
<div class="jet-tabs-settings-page jet-tabs-settings-page__general">
    <cx-vui-select
        name="widgets-load-level"
        label="<?php _e( 'Editor Load Level', 'jet-tabs' ); ?>"
        description="<?php _e( 'Choose a certain set of options in the widget’s Style tab by moving the slider, and improve your Elementor editor performance by selecting appropriate style settings fill level (from None to Full level)', 'jet-tricks' ); ?>"
        :wrapper-css="[ 'equalwidth' ]"
        size="fullwidth"
        :options-list="pageOptions.widgets_load_level.options"
        v-model="pageOptions.widgets_load_level.value">
    </cx-vui-select>

    <cx-vui-select
        name="ajax-request-type"
        label="<?php _e( 'Ajax Request Type', 'jet-tabs' ); ?>"
        description="<?php _e( 'Choose the type of AJAX request.', 'jet-tabs' ); ?>"
        :wrapper-css="[ 'equalwidth' ]"
        size="fullwidth"
        :options-list="pageOptions.ajax_request_type.options"
        v-model="pageOptions.ajax_request_type.value">
    </cx-vui-select>

    <cx-vui-switcher
    name="use-content-cache"
    label="<?php _e( 'Use Cache for Elementor Templates', 'jet-tabs' ); ?>"
    description="<?php _e( 'Enable caching for Elementor templates used in tab content to increase page rendering speed.', 'jet-tabs' ); ?>"
    :wrapper-css="[ 'equalwidth' ]"
    :return-true="true"
    :return-false="false"
    v-model="pageOptions.useTemplateCache.enable">
    </cx-vui-switcher>

    <cx-vui-select
        v-if="pageOptions.useTemplateCache.enable"
        name="cache-expiration"
        label="<?php _e( 'Cache Expiration', 'jet-tabs' ); ?>"
        description="<?php _e( 'Select a timeout for content caching. Select <b>None</b> for permanent cache. Changing this option will clear the content cache of all tabs', 'jet-tabs' ); ?>"
        :wrapper-css="[ 'equalwidth' ]"
        size="fullwidth"
        :options-list="cacheTimeoutOptions"
        v-model="pageOptions.useTemplateCache.cacheExpiration">
    </cx-vui-select>

    <div class="cx-vui-component cx-vui-component--equalwidth" v-if="pageOptions.useTemplateCache.enable">
        <div class="cx-vui-component__meta">
            <label class="cx-vui-component__label" for="cx_use-content-cache"><?php _e( 'Clear Cache', 'jet-tabs' ); ?></label>
            <div class="cx-vui-component__desc"><?php _e( 'Clear the templates cache for all tabs', 'jet-tabs' ); ?></div>
        </div>
        <div class="cx-vui-component__control">
            <cx-vui-button
                button-style="accent-border"
                size="mini"
                :loading="clearCacheStatus"
                @click="clearCache"
            >
                <span slot="label"><?php esc_html_e( 'Clear Cache', 'jet-tabs' ); ?></span>
            </cx-vui-button>
        </div>
    </div>
</div>