Professional frontend dashboard for WooCommerce and multivendor marketplaces. Supports WCFM Marketplace, Dokan, WC Vendors, WC Product Vendors.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
4,527
10 issue groups
Maintainability
3,596
10 issue groups
I18n
1,472
5 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Dokan_Moip_Withdraw".2,608
- Category
- Maintainability
- Occurrences
- 2,608
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Dokan_Moip_Withdraw".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$article_taxonomy'.1,380
- Category
- Security
- Occurrences
- 1,380
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$article_taxonomy'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.1,199
- Category
- Security
- Occurrences
- 1,199
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'wc-frontend-manager' but got "wc-frontend-mnager".1,031
- Category
- I18n
- Occurrences
- 1,031
- Severity
- error
Sample message
Mismatched text domain. Expected 'wc-frontend-manager' but got "wc-frontend-mnager".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.704
- Category
- Security
- Occurrences
- 704
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $balance_sql289
- Category
- Security
- Occurrences
- 289
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $balance_sql
WARNINGSecurityRequest data is not unslashed$_GET[$var] not unslashed before sanitization. Use wp_unslash() or similar280
- Category
- Security
- Occurrences
- 280
- Severity
- warning
Sample message
$_GET[$var] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'afet_field_wrapper_' . $field['id']".239
- Category
- Maintainability
- Occurrences
- 239
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'afet_field_wrapper_' . $field['id']".
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.233
- Category
- I18n
- Occurrences
- 233
- 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: $_GET[$var]229
- Category
- Security
- Occurrences
- 229
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET[$var]
Show 15 moreShow less
WARNINGMaintainabilityDirect Query218
- Category
- Maintainability
- Occurrences
- 218
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching213
- Category
- Maintainability
- Occurrences
- 213
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityNonce verification recommended156
- Category
- Security
- Occurrences
- 156
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not validated155
- Category
- Security
- Occurrences
- 155
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['term']. Check that the array index exists before using it.
ERRORI18nNon Singular String Literal Text116
- Category
- I18n
- Occurrences
- 116
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $article_taxonomy->label
ERRORSecurityDatabase parameter is not escaped107
- Category
- Security
- Occurrences
- 107
- Severity
- error
Sample message
Unescaped parameter $create_table_query used in $wpdb->query()\n$create_table_query used without escaping.
ERRORMaintainabilitydate date96
- Category
- Maintainability
- Occurrences
- 96
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityMissing direct file access protection87
- Category
- Maintainability
- Occurrences
- 87
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORI18nMissing Arg Domain47
- Category
- I18n
- Occurrences
- 47
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORI18nUnordered Placeholders Text45
- Category
- I18n
- Occurrences
- 45
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in 'Please select a date range between %d and %d days'.
WARNINGMaintainabilityslow db query meta key40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityslow db query meta value37
- Category
- Maintainability
- Occurrences
- 37
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
WARNINGMaintainabilityDeprecated parameter: get_terms parameter 230
- Category
- Maintainability
- Occurrences
- 30
- Severity
- warning
Sample message
The parameter "$args" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
WARNINGSecurityInterpolated SQL is not prepared28
- Category
- Security
- Occurrences
- 28
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable {$current_user_id} at \tAND posts.post_author = {$current_user_id}\r\n
ERRORMaintainabilitystrip tags strip tags28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
Score History
First score snapshot
v6.7.27
21
Latest
- Findings
- 9,788
- Errors
- 4,721
- Warnings
- 5,067
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 21 | 9,788 | 4,721 | 5,067 | v6.7.27 | 2.0.0 |