Slider Hero with Video Background, Animation

Hero Slider with Youtube Video Background & Animation Effects. Adverts, Text Carousels, Animated Header - Elementor Slider Widget & Gutenberg

v9.1.2QuantumCloudUpdated Added 3k+ installs96% rating
23
Score
1,565
Errors
1,253
Warnings
+0
Change

Category Scores

Security0
Repo89
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

2,818 findings

Maintainability

1,124

12 issue groups

I18n

971

3 issue groups

Security

675

10 issue groups

ERRORI18nText Domain MismatchMismatched text domain. Expected 'slider-hero' but got 'Slider Hero'.891
Category
I18n
Occurrences
891
Severity
error

Sample message

Mismatched text domain. Expected 'slider-hero' but got 'Slider Hero'.

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$_slideid'.348
Category
Security
Occurrences
348
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$_slideid'.

WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_filter_wp_kses_post".209
Category
Maintainability
Occurrences
209
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_filter_wp_kses_post".

WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'ot_recognized_sidebars_' . $field_id".195
Category
Maintainability
Occurrences
195
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'ot_recognized_sidebars_' . $field_id".

WARNINGMaintainabilityMissing VersionResource 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.178
Category
Maintainability
Occurrences
178
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.

WARNINGMaintainabilityNot In FooterIn 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.157
Category
Maintainability
Occurrences
157
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.

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

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().91
Category
Maintainability
Occurrences
91
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$HERO_feedback".83
Category
Maintainability
Occurrences
83
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$HERO_feedback".

ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.68
Category
Security
Occurrences
68
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 more
WARNINGSecurityNonce verification recommended62
Category
Security
Occurrences
62
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGSecurityRequest data is not unslashed61
Category
Security
Occurrences
61
Severity
warning

Sample message

$_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar

ERRORI18nMissing Arg Domain57
Category
I18n
Occurrences
57
Severity
error

Sample message

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

ERRORSecuritySQL query is not prepared45
Category
Security
Occurrences
45
Severity
error

Sample message

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

ERRORMaintainabilityNo Explicit Version38
Category
Maintainability
Occurrences
38
Severity
error

Sample message

Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.

WARNINGSecurityMissing nonce verification33
Category
Security
Occurrences
33
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORMaintainabilityMissing direct file access protection31
Category
Maintainability
Occurrences
31
Severity
error

Sample message

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

ERRORI18nMissing Translators Comment23
Category
I18n
Occurrences
23
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 constant21
Category
Maintainability
Occurrences
21
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "OT_ALLOW_UNFILTERED_HTML".

WARNINGSecurityInput is not sanitized20
Category
Security
Occurrences
20
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_GET['_wpnonce']

ERRORMaintainabilitywp function not compatible with requires wp19
Category
Maintainability
Occurrences
19
Severity
error

Sample message

Function "is_php_version_compatible()" requires WordPress 5.2.0, but your plugin minimum supported version is WordPress 4.6.0.

WARNINGSecurityInterpolated SQL is not prepared18
Category
Security
Occurrences
18
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $table at FROM $table WHERE id = %d\r\n

WARNINGSecurityInput is not validated13
Category
Security
Occurrences
13
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET['id']. Check that the array index exists before using it.

ERRORSecurityQuoted Simple Placeholder7
Category
Security
Occurrences
7
Severity
error

Sample message

Simple placeholders should not be quoted in the query string in $wpdb->prepare(). Found: '%d'.

WARNINGMaintainabilityNon-prefixed class7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "OT_Cleanup".

External Connections

Not analyzed yet.

Score History

First score snapshot

v9.1.2

23

Latest

Findings
2,818
Errors
1,565
Warnings
1,253
Check
2.0.0

Relationship Map

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

29 nodes

Related Plugins