Convert WooCommerce My Account page into a modern dashboard,avatar,dashboard cards,endpoints compatible with themes like Astra,woodmart,Divi etc
Category Scores
Top Issues by Category
maintainability892
security498
Issues Details
1,495 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$act_goahead".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$action'.
Function "get_avatar_url()" requires WordPress 4.2.0, but your plugin minimum supported version is WordPress 3.3.0.
Missing $domain parameter in function call to esc_html__().
The $text parameter must be a single text string literal. Found: $this->wcmamtx_avatar_settings_page
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
Processing form data without nonce verification.
$_GET['code'] not unslashed before sanitization. Use wp_unslash() or similar
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "after_wcmamtx_Appsero_license_section".
Detected usage of a non-sanitized input variable: $_FILES['file_data']
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.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "Appsero_init_tracker_customize_my_account_for_woocommerce".
Sanitization missing for register_setting().
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.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "RMA_DIR".
Processing form data without nonce verification.
Detected usage of a possibly undefined superglobal array index: $_GET['code']. Check that the array index exists before using it.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$this->client->slug . '_tracker_data'".
Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
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.
mt_rand() is discouraged. Use the far less predictable wp_rand() instead.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$act_goahead". | 692 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$action'. | 429 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "get_avatar_url()" requires WordPress 4.2.0, but your plugin minimum supported version is WordPress 3.3.0. | 74 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to esc_html__(). | 43 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: $this->wcmamtx_avatar_settings_page | 43 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 39 |
| WordPress.WP.EnqueuedResourceParameters.MissingVersion | WARNING | Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching. | 28 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 18 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['code'] not unslashed before sanitization. Use wp_unslash() or similar | 17 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "after_wcmamtx_Appsero_license_section". | 14 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['file_data'] | 14 |
| 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. | 13 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "Appsero_init_tracker_customize_my_account_for_woocommerce". | 9 |
| PluginCheck.CodeAnalysis.SettingSanitization.register_settingMissing | ERROR | Sanitization missing for register_setting(). | 7 |
| 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. | 7 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "RMA_DIR". | 6 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 6 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_GET['code']. Check that the array index exists before using it. | 5 |
| 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. | 4 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$this->client->slug . '_tracker_data'". | 4 |
| WordPress.WP.EnqueuedResourceParameters.NoExplicitVersion | ERROR | Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development. | 3 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 2 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 2 |
| 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. | 2 |
| WordPress.WP.AlternativeFunctions.rand_mt_rand | ERROR | mt_rand() is discouraged. Use the far less predictable wp_rand() instead. | 2 |
Latest Snapshot
Findings
1,495
Errors
662
Warnings
833
Score History
4 score snapshots
v4.3.22
22
Latest
- Findings
- 1,495
- Errors
- 662
- Warnings
- 833
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
v4.3.20
22
Score
- Findings
- 1,494
- Errors
- 662
- Warnings
- 832
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
v4.3.19
22
Score
- Findings
- 1,487
- Errors
- 661
- Warnings
- 826
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
v4.3.18
22
Score
- Findings
- 1,474
- Errors
- 654
- Warnings
- 820
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Latest | 22 | 1,495 | 662 | 833 | v4.3.22 | 2.0.0 | 2026.06-mvp-static-v2 |
| 22 | 1,494 | 662 | 832 | v4.3.20 | 2.0.0 | 2026.06-mvp-static-v2 | |
| 22 | 1,487 | 661 | 826 | v4.3.19 | 2.0.0 | 2026.06-mvp-static-v2 | |
| 22 | 1,474 | 654 | 820 | v4.3.18 | 2.0.0 | 2026.06-mvp-static-v2 |