# king-addons/51.1.37/includes/admin/layouts/settings-page.php

King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder, version 51.1.37. 453 lines.

- Page: https://pluginprobe.com/plugins/king-addons/51.1.37/code/includes/admin/layouts/settings-page.php
- Raw: https://pluginprobe.com/plugins/king-addons/51.1.37/raw/includes/admin/layouts/settings-page.php
- Modified: 2025-10-19T12:03:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/king-addons/51.1.37/code/includes/admin/layouts/settings-page.php#L10-L20`.

```php
<?php

if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly.
}

// Handle form submission
if (isset($_POST['king_addons_settings_submit_settings'])) {
    // Verify nonce for security
    if (
        !isset($_POST['king_addons_settings_nonce_field']) ||
        !wp_verify_nonce($_POST['king_addons_settings_nonce_field'], 'king_addons_settings_save_settings')
    ) {
        wp_die('Security check failed.');
    }

    // Sanitize and save the submitted data
    update_option('king_addons_google_map_api_key', sanitize_text_field($_POST['king_addons_google_map_api_key']));
    update_option('king_addons_mailchimp_api_key', sanitize_text_field($_POST['king_addons_mailchimp_api_key']));
    update_option('king_addons_recaptcha_v3_site_key', sanitize_text_field($_POST['king_addons_recaptcha_v3_site_key']));
    update_option('king_addons_recaptcha_v3_secret_key', sanitize_text_field($_POST['king_addons_recaptcha_v3_secret_key']));
    update_option('king_addons_recaptcha_v3_score_threshold', floatval($_POST['king_addons_recaptcha_v3_score_threshold']));

    // Lightbox - colors
    update_option('king_addons_lightbox_bg_color', sanitize_text_field($_POST['king_addons_lightbox_bg_color']));
    update_option('king_addons_lightbox_toolbar_color', sanitize_text_field($_POST['king_addons_lightbox_toolbar_color']));
    update_option('king_addons_lightbox_caption_color', sanitize_text_field($_POST['king_addons_lightbox_caption_color']));
    update_option('king_addons_lightbox_gallery_color', sanitize_text_field($_POST['king_addons_lightbox_gallery_color']));
    update_option('king_addons_lightbox_pb_color', sanitize_text_field($_POST['king_addons_lightbox_pb_color']));
    update_option('king_addons_lightbox_ui_color', sanitize_text_field($_POST['king_addons_lightbox_ui_color']));
    update_option('king_addons_lightbox_ui_hover_color', sanitize_text_field($_POST['king_addons_lightbox_ui_hover_color']));
    update_option('king_addons_lightbox_text_color', sanitize_text_field($_POST['king_addons_lightbox_text_color']));

    // Lightbox - numbers
    update_option('king_addons_lightbox_icon_size', intval($_POST['king_addons_lightbox_icon_size']));
    update_option('king_addons_lightbox_text_size', intval($_POST['king_addons_lightbox_text_size']));
    update_option('king_addons_lightbox_arrow_size', intval($_POST['king_addons_lightbox_arrow_size']));

    // Import Performance
    $improve_import = isset($_POST['king_addons_improve_import_performance']) ? '1' : '0';
    update_option('king_addons_improve_import_performance', $improve_import);

    // Template Catalog Button (Premium only)
    if (function_exists('king_addons_freemius') && king_addons_freemius()->can_use_premium_code()) {
        $disable_template_catalog = isset($_POST['king_addons_disable_template_catalog_button']) ? '1' : '0';
        update_option('king_addons_disable_template_catalog_button', $disable_template_catalog);
    }

    // Show a success message
    add_settings_error('king_addons_messages', 'king_addons_message', esc_html__('Settings Saved', 'king-addons'), 'updated');
    settings_errors('king_addons_messages');
}

// Get existing values from the database
$google_map_key = get_option('king_addons_google_map_api_key', '');
$mailchimp_key = get_option('king_addons_mailchimp_api_key', '');
$recaptcha_site_key = get_option('king_addons_recaptcha_v3_site_key', '');
$recaptcha_secret_key = get_option('king_addons_recaptcha_v3_secret_key', '');
$recaptcha_score_threshold = get_option('king_addons_recaptcha_v3_score_threshold', 0.5);

// Import Performance
$improve_import_performance = get_option('king_addons_improve_import_performance', '1');

// Template Catalog Button (Premium only)
$disable_template_catalog_button = get_option('king_addons_disable_template_catalog_button', '0');

// Render the settings form
?>
<style>
    #wpwrap,
    #wpcontent,
    .king-addons-settings {
        display: none;
    }

    #wpcontent {
        min-height: 100vh;
        overflow-x: hidden;
    }

    #wpwrap,
    html,
    body,
    #wpcontent {
        background: #101112;
    }

    .wrap {
        margin: 0;
    }

    .king-addons-settings {
        max-width: 1200px;
        margin: 10px 20px 0 0;
        padding: 20px;
        border-radius: 30px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    }

    h1.title {
        font-size: 25px;
        font-weight: 600;
        line-height: 1.5;
        display: inline-block;
        margin-top: 0;
        margin-bottom: 20px;
        padding: 0;
        background: linear-gradient(45deg, #E1CBFF, #9B62FF 50%, #5B03FF);
        background-clip: text; /* Standard property for compatibility */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    h2.king-addons-settings-group-title {
        font-size: 22px;
        color: #646970;
        font-weight: 600;
    }

    .king-addons-settings-table-wrap {
        padding: 30px 40px;
        border-radius: 30px;
        background: #1a1b1b;
    }

    th label {
        color: white;
        font-size: 15px;
    }

    .form-table td p,
    .form-table td p span {
        font-size: 15px;
        line-height: 1.4705882353;
        font-weight: 500;
        letter-spacing: normal;
        margin-top: 13px;
        color: #646970;
    }

    input[type=text],
    input[type=number] {
        background: #262829;
        font-size: 16px;
        color: white;
        border: 1px solid #484c4e;
        padding: 3px 14px;
    }

    .king-addons-premium-badge {
        display: inline-block;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        background-clip: padding-box; /* Standard property for compatibility */
        -webkit-background-clip: padding-box;
        color: white;
        font-size: 10px;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 3px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 1px 3px rgba(255, 107, 53, 0.3);
    }
</style>
<div class="wrap">
    <div class="king-addons-settings">
        <h1 class="title"><?php echo esc_html__('Settings', 'king-addons'); ?></h1>
        <form method="post" action="">
            <?php
            // Nonce field for security
            wp_nonce_field('king_addons_settings_save_settings', 'king_addons_settings_nonce_field');
            ?>
            <div class="king-addons-settings-table-wrap">

                <h2 class="king-addons-settings-group-title"><?php esc_html_e('Integrations', 'king-addons'); ?></h2>
                <table class="form-table">
                    <tr>
                        <th scope="row">
                            <label for="king_addons_google_map_api_key"><?php echo esc_html__('Google Map API Key', 'king-addons'); ?></label>
                        </th>
                        <td>
                            <input
                                type="text"
                                name="king_addons_google_map_api_key"
                                id="king_addons_google_map_api_key"
                                value="<?php echo esc_attr($google_map_key); ?>"
                                class="regular-text">
                            <p class="description">
                                <span><?php echo esc_html__('Enter your Google Map API key. You can obtain it from the Google Cloud Platform.', 'king-addons'); ?></span>
                                <br>
                                <a href="https://www.youtube.com/watch?v=O5cUoVpVUjU"
                                    target="_blank"><?php esc_html_e('How to get Google Map API Key?', 'king-addons'); ?></a>
                            </p>
                        </td>
                    </tr>

                    <tr>
                        <th scope="row">
                            <label for="king_addons_mailchimp_api_key"><?php echo esc_html__('MailChimp API Key', 'king-addons'); ?></label>
                        </th>
                        <td>
                            <input
                                type="text"
                                name="king_addons_mailchimp_api_key"
                                id="king_addons_mailchimp_api_key"
                                value="<?php echo esc_attr($mailchimp_key); ?>"
                                class="regular-text">
                            <p class="description">
                                <span><?php echo esc_html__('Insert your MailChimp API key here to integrate mailing features.', 'king-addons'); ?></span>
                                <br>
                                <a href="https://mailchimp.com/help/about-api-keys/"
                                    target="_blank"><?php esc_html_e('How to get MailChimp API Key?', 'king-addons'); ?></a>
                            </p>
                        </td>
                    </tr>

                    <tr>
                        <th scope="row">
                            <label for="king_addons_recaptcha_v3_site_key"><?php echo esc_html__('reCAPTCHA - Site Key', 'king-addons'); ?></label>
                        </th>
                        <td>
                            <input
                                type="text"
                                name="king_addons_recaptcha_v3_site_key"
                                id="king_addons_recaptcha_v3_site_key"
                                value="<?php echo esc_attr($recaptcha_site_key); ?>"
                                class="regular-text">
                            <p class="description">
                                <span><?php echo esc_html__('Enter your reCAPTCHA Site Key from the Google reCAPTCHA admin console. Add a reCAPTCHA element to the Form Builder fields to make it work.', 'king-addons'); ?></span>
                                <br>
                                <a href="https://www.google.com/recaptcha/about/"
                                    target="_blank"><?php esc_html_e('How to get reCAPTCHA Site Key?', 'king-addons'); ?></a>
                            </p>
                        </td>
                    </tr>

                    <tr>
                        <th scope="row">
                            <label for="king_addons_recaptcha_v3_secret_key"><?php echo esc_html__('reCAPTCHA - Secret Key', 'king-addons'); ?></label>
                        </th>
                        <td>
                            <input
                                type="text"
                                name="king_addons_recaptcha_v3_secret_key"
                                id="king_addons_recaptcha_v3_secret_key"
                                value="<?php echo esc_attr($recaptcha_secret_key); ?>"
                                class="regular-text">
                            <p class="description">
                                <span><?php echo esc_html__('Your reCAPTCHA Secret Key. Make sure to keep this secure.', 'king-addons'); ?></span>
                                <br>
                            </p>
                        </td>
                    </tr>

                    <tr>
                        <th scope="row">
                            <label for="king_addons_recaptcha_v3_score_threshold"><?php echo esc_html__('reCAPTCHA - Score Threshold', 'king-addons'); ?></label>
                        </th>
                        <td>
                            <input
                                type="number"
                                step="0.1"
                                min="0"
                                max="1"
                                placeholder="0.5"
                                name="king_addons_recaptcha_v3_score_threshold"
                                id="king_addons_recaptcha_v3_score_threshold"
                                value="<?php echo esc_attr($recaptcha_score_threshold); ?>"
                                class="regular-text">
                            <p class="description">
                                <?php echo esc_html__('Set a score threshold (0.0 to 1.0) for reCAPTCHA.', 'king-addons'); ?>
                            </p>
                        </td>
                    </tr>
                </table>

                <hr class="king-addons-settings-separator">

                <h2 class="king-addons-settings-group-title"><?php esc_html_e('Lightbox', 'king-addons'); ?></h2>
                <table class="form-table">

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_text_color"><?php esc_html_e('Text Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_text_color"
                                id="king_addons_lightbox_text_color" data-alpha-enabled="true"
                                data-default-color="#efefef"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_text_color', '#efefef')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_bg_color"><?php esc_html_e('Background Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_bg_color"
                                id="king_addons_lightbox_bg_color"
                                data-alpha-enabled="true" data-default-color="rgba(0,0,0,0.6)"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_bg_color', 'rgba(0,0,0,0.6)')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_toolbar_color"><?php esc_html_e('Toolbar BG Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_toolbar_color"
                                id="king_addons_lightbox_toolbar_color" data-alpha-enabled="true"
                                data-default-color="rgba(0,0,0,0.8)"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_toolbar_color', 'rgba(0,0,0,0.8)')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_caption_color"><?php esc_html_e('Caption BG Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_caption_color"
                                id="king_addons_lightbox_caption_color" data-alpha-enabled="true"
                                data-default-color="rgba(0,0,0,0.8)"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_caption_color', 'rgba(0,0,0,0.8)')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_gallery_color"><?php esc_html_e('Gallery BG Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_gallery_color"
                                id="king_addons_lightbox_gallery_color" data-alpha-enabled="true"
                                data-default-color="#444444"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_gallery_color', '#444444')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_pb_color"><?php esc_html_e('Progress Bar Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_pb_color"
                                id="king_addons_lightbox_pb_color"
                                data-alpha-enabled="true" data-default-color="#8a8a8a"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_pb_color', '#8a8a8a')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_ui_color"><?php esc_html_e('UI Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_ui_color"
                                id="king_addons_lightbox_ui_color"
                                data-alpha-enabled="true" data-default-color="#efefef"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_ui_color', '#efefef')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_ui_hover_color"><?php esc_html_e('UI Hover Color', 'king-addons'); ?></label>
                        </th>
                        <td><input type="text" name="king_addons_lightbox_ui_hover_color"
                                id="king_addons_lightbox_ui_hover_color" data-alpha-enabled="true"
                                data-default-color="#ffffff"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_ui_hover_color', '#ffffff')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_icon_size"><?php esc_html_e('UI Icon Size', 'king-addons'); ?></label>
                        </th>
                        <td><input type="number" name="king_addons_lightbox_icon_size"
                                id="king_addons_lightbox_icon_size"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_icon_size', '20')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_arrow_size"><?php esc_html_e('Navigation Arrow Size', 'king-addons'); ?></label>
                        </th>
                        <td><input type="number" name="king_addons_lightbox_arrow_size"
                                id="king_addons_lightbox_arrow_size"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_arrow_size', '35')); ?>">
                        </td>
                    </tr>

                    <tr>
                        <th scope="row"><label
                                for="king_addons_lightbox_text_size"><?php esc_html_e('Text Size', 'king-addons'); ?></label>
                        </th>
                        <td><input type="number" name="king_addons_lightbox_text_size"
                                id="king_addons_lightbox_text_size"
                                value="<?php echo esc_attr(get_option('king_addons_lightbox_text_size', '14')); ?>">
                        </td>
                    </tr>

                </table>

                <hr class="king-addons-settings-separator">

                <h2 class="king-addons-settings-group-title"><?php esc_html_e('Import Templates', 'king-addons'); ?></h2>
                <table class="form-table">
                    <tr>
                        <th scope="row">
                            <label for="king_addons_improve_import_performance"><?php echo esc_html__('Improve import on low-performance servers', 'king-addons'); ?></label>
                        </th>
                        <td>
                            <input
                                type="checkbox"
                                name="king_addons_improve_import_performance"
                                id="king_addons_improve_import_performance"
                                value="1"
                                <?php checked($improve_import_performance, '1'); ?>
                            >
                            <p class="description">
                                <?php echo esc_html__('Enable this to apply optimizations like increased PHP execution time limits and disabling intermediate image generation during template import. Recommended for servers with limited resources. Enabled by default.', 'king-addons'); ?>
                            </p>
                        </td>
                    </tr>
                    <?php if (function_exists('king_addons_freemius') && king_addons_freemius()->can_use_premium_code()) : ?>
                    <tr>
                        <th scope="row">
                            <label for="king_addons_disable_template_catalog_button"><?php echo esc_html__('Disable Template Catalog Button in Elementor Editor', 'king-addons'); ?>
                                <span class="king-addons-premium-badge"><?php echo esc_html__('PREMIUM', 'king-addons'); ?></span>
                            </label>
                        </th>
                        <td>
                            <input
                                type="checkbox"
                                name="king_addons_disable_template_catalog_button"
                                id="king_addons_disable_template_catalog_button"
                                value="1"
                                <?php checked($disable_template_catalog_button, '1'); ?>
                            >
                            <p class="description">
                                <?php echo esc_html__('Check this to hide the "Start with a Template" button that appears in the Elementor editor. This is useful if you prefer a cleaner editing interface without template suggestions.', 'king-addons'); ?>
                            </p>
                        </td>
                    </tr>
                    <?php endif; ?>
                </table>

            </div>
            <div class="kng-btn-submit-wrap">
                <button type="submit" name="king_addons_settings_submit_settings" id="submit" class="kng-btn-submit"
                    value="submit"><?php echo esc_html__('SAVE SETTINGS', 'king-addons'); ?></button>
            </div>
        </form>
    </div>
</div>
```
