Elementor all-in-one addons pack with the best widgets for Elementor, offering 100+ free widgets, templates, and tools to create stunning websites!
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
2,038
15 issue groups
Security
698
10 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,268
- Category
- Maintainability
- Occurrences
- 1,268
- 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>"'.529
- Category
- Security
- Occurrences
- 529
- 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>"'.
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "AddonLibraryCreatorPluginUC".283
- Category
- Maintainability
- Occurrences
- 283
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AddonLibraryCreatorPluginUC".
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "UCIsAddonLibraryPluginExists".111
- Category
- Maintainability
- Occurrences
- 111
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "UCIsAddonLibraryPluginExists".
ERRORMaintainabilitywp function not compatible with requires wpFunction "get_avatar_data()" requires WordPress 4.2.0, but your plugin minimum supported version is WordPress 3.5.0.98
- Category
- Maintainability
- Occurrences
- 98
- Severity
- error
Sample message
Function "get_avatar_data()" requires WordPress 4.2.0, but your plugin minimum supported version is WordPress 3.5.0.
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: ""ue_modify_dropdown_" . $phpFilter".65
- Category
- Maintainability
- Occurrences
- 65
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: ""ue_modify_dropdown_" . $phpFilter".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.45
- Category
- Security
- Occurrences
- 45
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.42
- Category
- Maintainability
- Occurrences
- 42
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;41
- Category
- Maintainability
- Occurrences
- 41
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().36
- Category
- Maintainability
- Occurrences
- 36
- 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
WARNINGMaintainabilityNon-prefixed constant35
- Category
- Maintainability
- Occurrences
- 35
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DISABLE_DOUBLY".
WARNINGSecurityDatabase parameter is not escaped25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Unescaped parameter $changelogTable used in $wpdb->query()\n$changelogTable assigned unsafely at line 143.
WARNINGSecurityInput is not sanitized25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE["woocommerce_recently_viewed"]
WARNINGSecurityRequest data is not unslashed22
- Category
- Security
- Occurrences
- 22
- Severity
- warning
Sample message
$_COOKIE["woocommerce_recently_viewed"] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInterpolated SQL is not prepared13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $fieldsTable at \t\t\t\t\t\t\tFROM $fieldsTable\n
WARNINGMaintainabilityDynamic hook name13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filterName".
WARNINGSecurityMissing nonce verification12
- Category
- Security
- Occurrences
- 12
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityslow db query meta key11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityerror log print r10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
WARNINGSecurityInput is not validated10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['json_file']['type']. Check that the array index exists before using it.
WARNINGMaintainabilityDiscouraged PHP function9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
WARNINGMaintainabilityslow db query tax query9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
Detected usage of tax_query, possible slow query.
WARNINGSecuritywp redirect wp redirect9
- Category
- Security
- Occurrences
- 9
- Severity
- warning
Sample message
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.
ERRORSecurityException output is not escaped8
- Category
- Security
- Occurrences
- 8
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$message'.
WARNINGMaintainabilityslow db query meta query7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
External Connections
Not analyzed yet.
Score History
2 score snapshots
v2.0.11
24
Latest
- Findings
- 2,803
- Errors
- 710
- Warnings
- 2,093
- Check
- 2.0.0
v2.0.10
24
Score
- Findings
- 2,801
- Errors
- 709
- Warnings
- 2,092
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 2,803 | 710 | 2,093 | v2.0.11 | 2.0.0 |
| 24 | 2,801 | 709 | 2,092 | v2.0.10 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.