Connect your store to your Mailchimp audience to track sales, create targeted emails, send abandoned cart emails, and more.
Category Scores
Top Issues by Category
security506
maintainability444
Issues Details
1,186 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_details".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$account_name'.
Mismatched text domain. Expected 'mailchimp-for-woocommerce' but got 'mailchimp-newsletter'.
Processing form data without nonce verification.
Processing form data without nonce verification.
$_COOKIE[$key] not unslashed before sanitization. Use wp_unslash() or similar
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Detected usage of a non-sanitized input variable: $_COOKIE[$key]
Short PHP opening tag used with echo; expected "<?php echo $enable_auto_subscribe ..." but found "<?= $enable_auto_subscribe ..."
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Use placeholders and $wpdb->prepare(); found $check_index_sql
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
Detected usage of a possibly undefined superglobal array index: $_GET['page']. Check that the array index exists before using it.
The $text parameter must be a single text string literal. Found: "Mailchimp says: API Request Error - ".$has_api_error
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Email [{$email}] has been blocked due to spam reports."'.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Use placeholders and $wpdb->prepare(); found interpolated variable $placeholders at "SELECT option_name, option_value FROM $wpdb->options WHERE option_name IN ($placeholders)"
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "MC_WC_ADVANCED_TAB".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
Detected usage of meta_key, possible slow query.
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
Detected usage of meta_value, possible slow query.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_details". | 241 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$account_name'. | 191 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'mailchimp-for-woocommerce' but got 'mailchimp-newsletter'. | 128 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 68 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 65 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_COOKIE[$key] not unslashed before sanitization. Use wp_unslash() or similar | 56 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 50 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 46 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_COOKIE[$key] | 46 |
| Generic.PHP.DisallowShortOpenTag.EchoFound | ERROR | Short PHP opening tag used with echo; expected "<?php echo $enable_auto_subscribe ..." but found "<?= $enable_auto_subscribe ..." | 37 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 34 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $check_index_sql | 28 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders. | 16 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 15 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_GET['page']. Check that the array index exists before using it. | 13 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: "Mailchimp says: API Request Error - ".$has_api_error | 13 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed. | 12 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Email [{$email}] has been blocked due to spam reports."'. | 10 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 9 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $placeholders at "SELECT option_name, option_value FROM $wpdb->options WHERE option_name IN ($placeholders)" | 8 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "MC_WC_ADVANCED_TAB". | 8 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins". | 8 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_key | WARNING | Detected usage of meta_key, possible slow query. | 7 |
| WordPress.WP.EnqueuedResourceParameters.NotInFooter | WARNING | In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header. | 7 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_value | WARNING | Detected usage of meta_value, possible slow query. | 6 |
Latest Snapshot
Findings
1,186
Errors
523
Warnings
663
Score History
First score snapshot
First scan completed Jun 19, 2026
v6.1.1 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v6.1.1
24
Latest
- Findings
- 1,186
- Errors
- 523
- Warnings
- 663
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 24 | 1,186 | 523 | 663 | v6.1.1 | 2.0.0 | 2026.06-mvp-static-v2 |