Elementor addons: Elementor widgets, Elementor templates, 80+ widgets, 4 000+ templates and sections, Mega Menu, Popup Builder, WooCommerce, AI tools.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
2,642
12 issue groups
Security
2,515
10 issue groups
I18n
368
1 issue group
Performance
40
2 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,994
- Category
- Maintainability
- Occurrences
- 1,994
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.1,312
- Category
- Security
- Occurrences
- 1,312
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.
WARNINGSecurityRequest data is not unslashed$_COOKIE[$name] not unslashed before sanitization. Use wp_unslash() or similar388
- Category
- Security
- Occurrences
- 388
- Severity
- warning
Sample message
$_COOKIE[$name] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nMissing Translators CommentA 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.368
- Category
- I18n
- Occurrences
- 368
- Severity
- error
Sample message
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.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE[$name]229
- Category
- Security
- Occurrences
- 229
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[$name]
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.228
- Category
- Security
- Occurrences
- 228
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.143
- Category
- Security
- Occurrences
- 143
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.113
- Category
- Maintainability
- Occurrences
- 113
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".107
- Category
- Maintainability
- Occurrences
- 107
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().99
- Category
- Maintainability
- Occurrences
- 99
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Show 15 moreShow less
WARNINGSecurityInput is not validated86
- Category
- Security
- Occurrences
- 86
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['king_addons_cookie_import']['tmp_name']. Check that the array index exists before using it.
WARNINGMaintainabilityerror log error log66
- Category
- Maintainability
- Occurrences
- 66
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
WARNINGSecurityInterpolated SQL is not prepared56
- Category
- Security
- Occurrences
- 56
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $column at ON DUPLICATE KEY UPDATE $column = $column + 1"
WARNINGMaintainabilityNon-prefixed class55
- Category
- Maintainability
- Occurrences
- 55
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "FS_Admin_Menu_Manager".
WARNINGMaintainabilityslow db query tax query46
- Category
- Maintainability
- Occurrences
- 46
- Severity
- warning
Sample message
Detected usage of tax_query, possible slow query.
WARNINGMaintainabilityNon-prefixed hook name40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "fs_plugins_api".
WARNINGMaintainabilityslow db query meta key38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityslow db query meta query35
- Category
- Maintainability
- Occurrences
- 35
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
ERRORSecuritySQL query is not prepared30
- Category
- Security
- Occurrences
- 30
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $adds_query
WARNINGMaintainabilityNon-prefixed constant26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".
WARNINGSecurityDatabase parameter is not escaped24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Unescaped parameter $clicks_table used in $wpdb->get_var()\n$clicks_table assigned unsafely at line 624.
WARNINGMaintainabilityNot In Footer23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- warning
Sample message
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.
WARNINGPerformancePost Not In post not in23
- Category
- Performance
- Occurrences
- 23
- Severity
- warning
Sample message
Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
ERRORSecurityDatabase parameter is not escaped19
- Category
- Security
- Occurrences
- 19
- Severity
- error
Sample message
Unescaped parameter $adds_query used in $wpdb->get_var()\n$adds_query assigned unsafely at line 431.
WARNINGPerformancePost Not In exclude17
- Category
- Performance
- Occurrences
- 17
- Severity
- warning
Sample message
Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
External Connections
Not analyzed yet.
Score History
First score snapshot
v51.1.64
23
Latest
- Findings
- 5,715
- Errors
- 1,837
- Warnings
- 3,878
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 5,715 | 1,837 | 3,878 | v51.1.64 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.