Sync your WooCommerce products, orders, and inventory effortlessly with Etsy.com. List your products on Etsy and sync orders and stock levels.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
3,630
13 issue groups
Security
1,895
10 issue groups
I18n
161
2 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Emx5".2,265
- Category
- Maintainability
- Occurrences
- 2,265
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Emx5".
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>"'.596
- Category
- Security
- Occurrences
- 596
- 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>"'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.498
- Category
- Security
- Occurrences
- 498
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.446
- Category
- Maintainability
- Occurrences
- 446
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().409
- Category
- Maintainability
- Occurrences
- 409
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $attr_table at "SELECT attribute_name FROM $attr_table"251
- Category
- Security
- Occurrences
- 251
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $attr_table at "SELECT attribute_name FROM $attr_table"
WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $attr_table used in $wpdb->get_results()\n$attr_table assigned unsafely at line 22.176
- Category
- Security
- Occurrences
- 176
- Severity
- warning
Sample message
Unescaped parameter $attr_table used in $wpdb->get_results()\n$attr_table assigned unsafely at line 22.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $SQL127
- Category
- Security
- Occurrences
- 127
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $SQL
ERRORI18nText Domain MismatchMismatched text domain. Expected 'exportfeed-for-woocommerce-product-to-etsy' but got 'Etsy'.124
- Category
- I18n
- Occurrences
- 124
- Severity
- error
Sample message
Mismatched text domain. Expected 'exportfeed-for-woocommerce-product-to-etsy' but got 'Etsy'.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".121
- Category
- Maintainability
- Occurrences
- 121
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".
Show 15 moreShow less
ERRORSecurityDatabase parameter is not escaped92
- Category
- Security
- Occurrences
- 92
- Severity
- error
Sample message
Unescaped parameter $SQL used in $wpdb->get_results()\n$SQL assigned unsafely at line 501.
ERRORMaintainabilityMissing direct file access protection64
- Category
- Maintainability
- Occurrences
- 64
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed class56
- Category
- Maintainability
- Occurrences
- 56
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AttributeMappingUpdate".
WARNINGMaintainabilityerror log error log52
- Category
- Maintainability
- Occurrences
- 52
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
WARNINGMaintainabilityNon-prefixed constant47
- Category
- Maintainability
- Occurrences
- 47
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".
WARNINGMaintainabilityerror log print r46
- Category
- Maintainability
- Occurrences
- 46
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
WARNINGSecurityInput is not sanitized45
- Category
- Security
- Occurrences
- 45
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_ENV['CONTENT_TYPE']
WARNINGSecurityMissing nonce verification43
- Category
- Security
- Occurrences
- 43
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed43
- Category
- Security
- Occurrences
- 43
- Severity
- warning
Sample message
$_GET['etcpf_selected'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilitydate date40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORI18nMissing Arg Domain37
- Category
- I18n
- Occurrences
- 37
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORMaintainabilitystrip tags strip tags33
- Category
- Maintainability
- Occurrences
- 33
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityDiscouraged PHP function26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
ERRORMaintainabilityparse url parse url25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
WARNINGSecuritywp redirect wp redirect24
- Category
- Security
- Occurrences
- 24
- 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.
External Connections
Potential connections found in static code analysis.
Outbound calls
292
External assets
4
Incoming endpoints
4
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints3
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v6.6.0.6
24
Latest
- Findings
- 5,889
- Errors
- 1,246
- Warnings
- 4,643
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 5,889 | 1,246 | 4,643 | v6.6.0.6 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.