Flexible WooCommerce plugin for event booking, attendee management, and responsive ticketing with a modern event calendar.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,925
14 issue groups
Security
1,061
9 issue groups
I18n
34
2 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_event_id".866
- Category
- Maintainability
- Occurrences
- 866
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_event_id".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><a href='{$link}' target='_blank'>{$title}</a> <br><small>{$pubDate}</small></li>"'.404
- Category
- Security
- Occurrences
- 404
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><a href='{$link}' target='_blank'>{$title}</a> <br><small>{$pubDate}</small></li>"'.
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.392
- Category
- Maintainability
- Occurrences
- 392
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "WC".281
- Category
- Maintainability
- Occurrences
- 281
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "WC".
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'activate_' . $plugin_file".239
- Category
- Maintainability
- Occurrences
- 239
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'activate_' . $plugin_file".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.221
- Category
- Security
- Occurrences
- 221
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.142
- Category
- Security
- Occurrences
- 142
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_GET[$key] not unslashed before sanitization. Use wp_unslash() or similar134
- Category
- Security
- Occurrences
- 134
- Severity
- warning
Sample message
$_GET[$key] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET[$key]96
- Category
- Security
- Occurrences
- 96
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET[$key]
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.40
- Category
- Security
- Occurrences
- 40
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Show 15 moreShow less
WARNINGMaintainabilityslow db query meta query28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
ERRORI18nText Domain Mismatch26
- Category
- I18n
- Occurrences
- 26
- Severity
- error
Sample message
Mismatched text domain. Expected 'mage-eventpress' but got 'mage-eventpress-gq'.
ERRORMaintainabilitystrip tags strip tags21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityDirect Query16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityNon-prefixed class16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AddMetaBox".
ERRORMaintainabilityMissing direct file access protection15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilitywp function not compatible with requires wp14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- error
Sample message
Function "block_footer_area()" requires WordPress 5.9.0, but your plugin minimum supported version is WordPress 5.3.0.
WARNINGSecurityInput is not validated11
- Category
- Security
- Occurrences
- 11
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['ea_event_date']. Check that the array index exists before using it.
ERRORMaintainabilityOffloaded Content9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
WARNINGSecurityInterpolated SQL is not prepared8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $placeholders at \t\t\t\t\t OR option_name IN ( $placeholders )"
ERRORI18nMissing Translators Comment8
- Category
- I18n
- Occurrences
- 8
- 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.
WARNINGMaintainabilityslow db query meta key6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
ERRORMaintainabilityrand rand6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
ERRORSecuritySQL query is not prepared5
- Category
- Security
- Occurrences
- 5
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $query
External Connections
Potential connections found in static code analysis.
Outbound calls
202
External assets
18
Incoming endpoints
79
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Admin AJAX endpoints63
wp_ajax
wp_ajax
admin_post
admin_post
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
51 more hidden
Score History
2 score snapshots
v5.3.5
24
Latest
- Findings
- 3,090
- Errors
- 968
- Warnings
- 2,122
- Check
- 2.0.0
v5.3.4
24
Score
- Findings
- 2,920
- Errors
- 956
- Warnings
- 1,964
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 3,090 | 968 | 2,122 | v5.3.5 | 2.0.0 |
| 24 | 2,920 | 956 | 1,964 | v5.3.4 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.