Elementor addons with 300+ widgets, templates, WooCommerce widgets, mega menu, header footer builder, and powerful design extensions.
Category Scores
Top Issues by Category
i18n9,260
security403
maintainability174
performance51
supply_chain8
Issues Details
9,965 issues found in latest scan
Mismatched text domain. Expected 'bdthemes-element-pack-lite' but got "bdthemes-element-pack".
Processing form data without nonce verification.
$_GET['currency'] not unslashed before sanitization. Use wp_unslash() or similar
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$active_modules".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='ep-option-item {$class} {$widget_used_status}' {$data_type}>"'.
Detected usage of a non-sanitized input variable: $_ENV['CONTENT_TYPE']
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.
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.
Processing form data without nonce verification.
Use placeholders and $wpdb->prepare(); found interpolated variable $table_cat_name at "DROP TABLE IF EXISTS $table_cat_name"
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_is_elementor_installed".
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in '%1s Footer %2s CSS/Script'.
Detected usage of a possibly undefined superglobal array index: $_POST['id']. Check that the array index exists before using it.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "bdt_ep_init_pro".
Resource version not set in call to wp_register_script(). This means new versions of the script may not always be loaded due to browser caching.
Unescaped parameter $count_sql used in $wpdb->get_var()\n$count_sql assigned unsafely at line 336.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "OAuthConsumer".
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.
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
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.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'bdthemes-element-pack-lite' but got "bdthemes-element-pack". | 9,203 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 90 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['currency'] not unslashed before sanitization. Use wp_unslash() or similar | 85 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$active_modules". | 65 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='ep-option-item {$class} {$widget_used_status}' {$data_type}>"'. | 65 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_ENV['CONTENT_TYPE'] | 53 |
| 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. | 44 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_exclude | WARNING | 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. | 44 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 31 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $count_sql | 30 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $table_cat_name at "DROP TABLE IF EXISTS $table_cat_name" | 28 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_is_elementor_installed". | 27 |
| WordPress.DateTime.RestrictedFunctions.date_date | ERROR | date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead. | 17 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in '%1s Footer %2s CSS/Script'. | 13 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_POST['id']. Check that the array index exists before using it. | 12 |
| WordPress.WP.AlternativeFunctions.curl_curl_setopt | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 12 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "bdt_ep_init_pro". | 10 |
| WordPress.WP.EnqueuedResourceParameters.MissingVersion | WARNING | Resource version not set in call to wp_register_script(). This means new versions of the script may not always be loaded due to browser caching. | 10 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $count_sql used in $wpdb->get_var()\n$count_sql assigned unsafely at line 336. | 9 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "OAuthConsumer". | 9 |
| 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. | 9 |
| WordPress.WP.AlternativeFunctions.strip_tags_strip_tags | ERROR | strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead. | 8 |
| compressed_files | ERROR | Compressed files are not permitted. | 8 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_post__not_in | WARNING | 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. | 7 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 7 |
Latest Snapshot
Findings
9,965
Errors
9,448
Warnings
517
Score History
First score snapshot
First scan completed Jun 19, 2026
v8.7.4 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v8.7.4
19
Latest
- Findings
- 9,965
- Errors
- 9,448
- Warnings
- 517
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 19 | 9,965 | 9,448 | 517 | v8.7.4 | 2.0.0 | 2026.06-mvp-static-v2 |