Event Organiser

Create and maintain events, including complex reoccurring patterns, venue management (with Google Maps or OpenStreetMap), calendars and customisable e …

v3.12.9Stephen HarrisUpdated Added 20k+ installs92% rating0% support resolved
20
Score
1,104
Errors
544
Warnings
+1
Change

Category Scores

Security0
Repo70
Performance92
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,648 findings

I18n

659

3 issue groups

Security

547

11 issue groups

Maintainability

375

10 issue groups

Performance

12

1 issue group

ERRORI18nText Domain MismatchMismatched text domain. Expected 'event-organiser' but got 'eventorganiser'.563
Category
I18n
Occurrences
563
Severity
error

Sample message

Mismatched text domain. Expected 'event-organiser' but got 'eventorganiser'.

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div id='{$id}_content' class='eo-widget-cal-wrap' data-eo-widget-cal-id='{$id}' >"'.285
Category
Security
Occurrences
285
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div id='{$id}_content' class='eo-widget-cal-wrap' data-eo-widget-cal-id='{$id}' >"'.

WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;_eo_format_datetime_range&quot;.124
Category
Maintainability
Occurrences
124
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;_eo_format_datetime_range&quot;.

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$EO_Errors&quot;.87
Category
Maintainability
Occurrences
87
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$EO_Errors&quot;.

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.58
Category
I18n
Occurrences
58
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.

WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.56
Category
Security
Occurrences
56
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.52
Category
Security
Occurrences
52
Severity
error

Sample message

All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.

ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;43
Category
Maintainability
Occurrences
43
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE[&#039;eo_admin_cal_last_view&#039;]42
Category
Security
Occurrences
42
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_COOKIE[&#039;eo_admin_cal_last_view&#039;]

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.38
Category
Maintainability
Occurrences
38
Severity
warning

Sample message

Use of a direct database call is discouraged.

Show 15 more
ERRORI18nMissing Arg Domain38
Category
I18n
Occurrences
38
Severity
error

Sample message

Missing $domain parameter in function call to __().

WARNINGSecurityRequest data is not unslashed37
Category
Security
Occurrences
37
Severity
warning

Sample message

$_COOKIE[&#039;eo_admin_cal_last_view&#039;] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityNo Caching33
Category
Maintainability
Occurrences
33
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 validated30
Category
Security
Occurrences
30
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_FILES[&#039;ics&#039;][&#039;tmp_name&#039;]. Check that the array index exists before using it.

WARNINGMaintainabilityNon-prefixed hook name13
Category
Maintainability
Occurrences
13
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;add_meta_boxes_event_page_venues&quot;.

WARNINGSecurityMissing nonce verification13
Category
Security
Occurrences
13
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGMaintainabilityNon-prefixed class12
Category
Maintainability
Occurrences
12
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;EO_Admin_Notice_Handler&quot;.

ERRORMaintainabilityDeprecated parameter: get_terms parameter 212
Category
Maintainability
Occurrences
12
Severity
error

Sample message

The parameter "$args" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.

WARNINGPerformancePost Not In exclude12
Category
Performance
Occurrences
12
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.

ERRORSecuritySQL query is not prepared11
Category
Security
Occurrences
11
Severity
error

Sample message

Use placeholders and $wpdb->prepare(); found $delete_columns

WARNINGSecurityInterpolated SQL is not prepared8
Category
Security
Occurrences
8
Severity
warning

Sample message

Use placeholders and $wpdb-&gt;prepare(); found interpolated variable $eventorganiser_venue_table at &quot; SELECT venue_slug, venue_address, venue_postal, venue_country, venue_lng, venue_lat, venue_description FROM $eventorganiser_venue_table&quot;

ERRORSecurityDatabase parameter is not escaped7
Category
Security
Occurrences
7
Severity
error

Sample message

Unescaped parameter $delete_columns used in $wpdb->query()\n$delete_columns assigned unsafely at line 205.

WARNINGMaintainabilitySchema Change7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

Attempting a database schema change is discouraged.

WARNINGMaintainabilityNon-prefixed constant6
Category
Maintainability
Occurrences
6
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;DATETIMEOBJ&quot;.

ERRORSecurityException output is 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 '$duration_str'.

External Connections

Potential connections found in static code analysis.

25 domains

Outbound calls

289

External assets

0

Incoming endpoints

11

Notable Domains

jquery.org82 · outbound
jqueryui.com80 · outbound
api.jqueryui.com60 · outbound
qtip2.com6 · outbound
arshaw.com4 · outbound

Platform / Reference Domains

core.trac.wordpress.org13 · platform/reference
codex.wordpress.org9 · platform/reference
github.com6 · platform/reference
bbpress.trac.wordpress.org1 · platform/reference
wordpress.org1 · platform/reference

External Asset Domains

No external asset domains detected.

Incoming Endpoints

wp_ajax_nopriv_eo_widget_agendapublic

wp_ajax

wp_ajax_nopriv_eo_widget_calpublic

wp_ajax

wp_ajax_nopriv_eventorganiser-fullcalpublic

wp_ajax

Admin AJAX endpoints8
wp_ajax_eo_toggle_addon_pageauthenticated

wp_ajax

wp_ajax_eo_widget_agendaauthenticated

wp_ajax

wp_ajax_eo_widget_calauthenticated

wp_ajax

wp_ajax_eo-search-venueauthenticated

wp_ajax

wp_ajax_eofc-edit-dateauthenticated

wp_ajax

wp_ajax_eofc-format-timeauthenticated

wp_ajax

wp_ajax_event-admin-calauthenticated

wp_ajax

wp_ajax_eventorganiser-fullcalauthenticated

wp_ajax

Score History

2 score snapshots

+1
1007550250Jun 20, 2026, 11:27 AM UTC Score 19/100 Plugin v3.12.8 Plugin Check 2.0.0 1,106 errors, 544 warningsJun 26, 2026, 11:22 PM UTC Score 20/100 Plugin v3.12.9 Plugin Check 2.0.0 1,104 errors, 544 warningsJun 20, 2026Jun 26, 2026

v3.12.9

20

Latest

Findings
1,648
Errors
1,104
Warnings
544
Check
2.0.0

v3.12.8

19

Score

Findings
1,650
Errors
1,106
Warnings
544
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

37 nodes

Related Plugins

Events Block

500 active installs

100
Calendar

4k+ active installs

99