Create beautiful, responsive event calendars with unlimited events, repeating schedules, virtual support, and a sleek minimal design!
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
1,819
6 issue groups
Security
888
7 issue groups
Maintainability
864
12 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'eventon-lite' but got "eventon".1,631
- Category
- I18n
- Occurrences
- 1,631
- Severity
- error
Sample message
Mismatched text domain. Expected 'eventon-lite' but got "eventon".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" value='{$input_value}'"'.648
- Category
- Security
- Occurrences
- 648
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" value='{$input_value}'"'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$BGURL".453
- Category
- Maintainability
- Occurrences
- 453
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$BGURL".
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'evo_ajax_' . $action".170
- Category
- Maintainability
- Occurrences
- 170
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'evo_ajax_' . $action".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.92
- Category
- Security
- Occurrences
- 92
- Severity
- warning
Sample message
Processing form data without nonce verification.
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.76
- Category
- I18n
- Occurrences
- 76
- 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 classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "EVO_AJAX".64
- Category
- Maintainability
- Occurrences
- 64
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "EVO_AJAX".
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "EVO".59
- Category
- Maintainability
- Occurrences
- 59
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "EVO".
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().55
- Category
- I18n
- Occurrences
- 55
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.54
- Category
- Security
- Occurrences
- 54
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
ERRORMaintainabilityMissing direct file access protection53
- Category
- Maintainability
- Occurrences
- 53
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORSecurityUnsafe printing function39
- Category
- Security
- Occurrences
- 39
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityRequest data is not unslashed36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
$_GET['ev_month'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nNon Singular String Literal Text26
- Category
- I18n
- Occurrences
- 26
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $_name
ERRORI18nNon Singular String Literal Domain25
- Category
- I18n
- Occurrences
- 25
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: $TD
WARNINGMaintainabilityDirect Query17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not sanitized13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['nonce']
WARNINGMaintainabilityerror log error log10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORMaintainabilityShort PHP open tag found7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo $ev_month ..." but found "<?= $ev_month ..."
WARNINGMaintainabilityMissing Version7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
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.
WARNINGSecurityInput is not validated6
- Category
- Security
- Occurrences
- 6
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST[$key]. Check that the array index exists before using it.
ERRORI18nUnordered Placeholders Text6
- Category
- I18n
- Occurrences
- 6
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$d", but got "%s, %d" in '%s (Category #%d)'.
ERRORMaintainabilitydate date5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityerror log print r5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
External Connections
Not analyzed yet.
Score History
First score snapshot
v2.5.5
23
Latest
- Findings
- 3,606
- Errors
- 2,585
- Warnings
- 1,021
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 3,606 | 2,585 | 1,021 | v2.5.5 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.