Mobile Responsive Logos, Hamburger Menus, Animated Top Bars, FAQ Accordions, User Signatures, Google Calendars and much more for Genesis sites
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
507
11 issue groups
I18n
174
5 issue groups
Maintainability
122
9 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after_widget'.168
- Category
- Security
- Occurrences
- 168
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after_widget'.
ERRORI18nNon Singular String Literal DomainThe $domain parameter must be a single text string literal. Found: GENESIS_CLUB_DOMAIN80
- Category
- I18n
- Occurrences
- 80
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: GENESIS_CLUB_DOMAIN
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE[self::COOKIE_NAME]62
- Category
- Security
- Occurrences
- 62
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[self::COOKIE_NAME]
WARNINGSecurityRequest data is not unslashed$_COOKIE[self::COOKIE_NAME] not unslashed before sanitization. Use wp_unslash() or similar62
- Category
- Security
- Occurrences
- 62
- Severity
- warning
Sample message
$_COOKIE[self::COOKIE_NAME] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().62
- Category
- I18n
- Occurrences
- 62
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORSecurityHeredoc Output Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found interpolation in unescaped heredoc.60
- Category
- Security
- Occurrences
- 60
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found interpolation in unescaped heredoc.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.58
- Category
- Security
- Occurrences
- 58
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityNot AllowedUse of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead39
- Category
- Maintainability
- Occurrences
- 39
- Severity
- error
Sample message
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.39
- Category
- Security
- Occurrences
- 39
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET['action']. Check that the array index exists before using it.22
- Category
- Security
- Occurrences
- 22
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['action']. Check that the array index exists before using it.
Show 15 moreShow less
WARNINGMaintainabilityDirect Query19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORI18nNon Singular String Literal Text18
- Category
- I18n
- Occurrences
- 18
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $hide ? 'Do not show the top bar on this page' : 'Show the top bar on this page'
ERRORSecuritySQL query is not prepared12
- Category
- Security
- Occurrences
- 12
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $insert
ERRORMaintainabilityMissing direct file access protection12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilitywp function not compatible with requires wp12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Function "delete_term_meta()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.1.0.
ERRORSecurityDatabase parameter is not escaped11
- Category
- Security
- Occurrences
- 11
- Severity
- error
Sample message
Unescaped parameter $insert used in $wpdb->query()\n$insert assigned unsafely at line 259.
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.
ERRORMaintainabilitystrip tags strip tags9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORI18nMissing Translators Comment9
- Category
- I18n
- Occurrences
- 9
- 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.
WARNINGMaintainabilityNon-prefixed hook name7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "diy_landing_page_templates".
ERRORI18nText Domain Mismatch5
- Category
- I18n
- Occurrences
- 5
- Severity
- error
Sample message
Mismatched text domain. Expected 'genesis-club-lite' but got 'GenesisClub'.
ERRORSecurityUnsafe printing function4
- Category
- Security
- Occurrences
- 4
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORMaintainabilityparse url parse url3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
WARNINGMaintainabilityNot In Footer3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
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.
External Connections
Potential connections found in static code analysis.
Outbound calls
22
External assets
3
Incoming endpoints
0
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
No public endpoints detected.
Score History
First score snapshot
v1.17
25
Latest
- Findings
- 830
- Errors
- 513
- Warnings
- 317
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 830 | 513 | 317 | v1.17 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.