HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/Gosuryaid/wp/wp-content/plugins/mailchimp-for-woocommerce/admin/partials/tabs/notices.php
<?php if(isset($_GET['error_notice'])): ?>
<div class="error notice is-dismissable">
    <?php
        switch($_GET['error_notice']) {
            case 'missing_api_key':
                esc_html_e('Mailchimp says: You must enter in a valid API key.', 'mailchimp-for-woocommerce');
            break;
            case 'missing_list':
                esc_html_e('Mailchimp says: You must select a marketing audience.', 'mailchimp-for-woocommerce');
                break;
            case 'missing_store':
                esc_html_e('Mailchimp says: Sorry you must set up your store before you proceed!', 'mailchimp-for-woocommerce');
                break;
            case 'not_ready_for_sync':
                esc_html_e('Mailchimp says: You are not fully ready to run the Store Sync, please verify your settings before proceeding.', 'mailchimp-for-woocommerce');
                break;
            default:

        }
    ?>
</div>
<?php endif; ?>

<?php if (isset($_GET['success_notice'])): ?>
    <div class="success notice is-dismissable">
        <?php
        switch($_GET['error_notice']) {
            case 're-sync-started':
                esc_html_e('Mailchimp says: Your re-sync has been started!', 'mailchimp-for-woocommerce');
                break;
            default:
        }
        ?>
    </div>
<?php endif; ?>