Design stunning WooCommerce sites that sell with 94+ Widgets, 14+ Modules, & 150+ Templates of CoDesigner Elementor WooCommerce addon.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
4,068
4 issue groups
Maintainability
482
13 issue groups
Security
312
7 issue groups
Performance
8
1 issue group
ERRORI18nText Domain MismatchMismatched text domain. Expected 'woolementor' but got 'Codesigner'.4,028
- Category
- I18n
- Occurrences
- 4,028
- Severity
- error
Sample message
Mismatched text domain. Expected 'woolementor' but got 'Codesigner'.
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_active".335
- Category
- Maintainability
- Occurrences
- 335
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_active".
WARNINGSecurityMissingProcessing form data without nonce verification.78
- Category
- Security
- Occurrences
- 78
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing Unslash$_COOKIE[$_wishlist_key] not unslashed before sanitization. Use wp_unslash() or similar71
- Category
- Security
- Occurrences
- 71
- Severity
- warning
Sample message
$_COOKIE[$_wishlist_key] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE['woocommerce_recently_viewed']63
- Category
- Security
- Occurrences
- 63
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['woocommerce_recently_viewed']
WARNINGSecurityRecommendedProcessing form data without nonce verification.61
- Category
- Security
- Occurrences
- 61
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "cd_bulk_discount_amount".46
- Category
- Maintainability
- Occurrences
- 46
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "cd_bulk_discount_amount".
WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_GET['tag_ID']. Check that the array index exists before using it.30
- Category
- Security
- Occurrences
- 30
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['tag_ID']. Check that the array index exists before using it.
ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;30
- Category
- Maintainability
- Occurrences
- 30
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "cd_after_add_to_cart_style".22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "cd_after_add_to_cart_style".
Show 15 moreShow less
ERRORI18nNon Singular String Literal Text17
- Category
- I18n
- Occurrences
- 17
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $module['title']
WARNINGMaintainabilityMaybe ASPShort Open Tag Found15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- warning
Sample message
Possible use of ASP style short opening tags detected; found: <%= CODESIGNER_LIB.url %>/get/<%= i.templat...
ERRORI18nMissing Translators Comment14
- Category
- I18n
- Occurrences
- 14
- 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.
ERRORI18nNo Empty Strings9
- Category
- I18n
- Occurrences
- 9
- Severity
- error
Sample message
The $plural text string should have translatable content. Found: '%s'
WARNINGPerformancePost Not In exclude8
- Category
- Performance
- Occurrences
- 8
- Severity
- warning
Sample message
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.
ERRORMaintainabilityOffloaded Content7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
WARNINGMaintainabilityMaybe ASPOpen Tag Found6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
Possible use of ASP style opening tags detected; found: <% _.each( blocks, function(i) { %>\n
ERRORSecurityOutput Not Escaped6
- Category
- Security
- Occurrences
- 6
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'.
WARNINGMaintainabilityDirect Query4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilitywp reset query wp reset query4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
wp_reset_query() is discouraged. Use wp_reset_postdata() instead.
ERRORSecurityNot Prepared3
- Category
- Security
- Occurrences
- 3
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $sql
WARNINGMaintainabilityerror log error log3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORMaintainabilitystrip tags strip tags3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORMaintainabilitybadly named files3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
File and folder names must not contain spaces or special characters.
Score History
First score snapshot
v4.31
22
Latest
- Findings
- 4,905
- Errors
- 4,131
- Warnings
- 774
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 4,905 | 4,131 | 774 | v4.31 | 2.0.0 |