Service Box with slider is a powerful & robust but easy to represent your services with grid and slider. It comes with 50 unique layouts and creat …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,263
13 issue groups
Security
734
10 issue groups
I18n
23
2 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$bgCSS".600
- Category
- Maintainability
- Occurrences
- 600
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$bgCSS".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"-read-more'>\r\n'.288
- Category
- Security
- Occurrences
- 288
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"-read-more'>\r\n'.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;237
- Category
- Maintainability
- Occurrences
- 237
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
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.159
- Category
- Maintainability
- Occurrences
- 159
- 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 validatedDetected usage of a possibly undefined superglobal array index: $_POST['bgcolor']. Check that the array index exists before using it.131
- Category
- Security
- Occurrences
- 131
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['bgcolor']. Check that the array index exists before using it.
WARNINGSecurityRequest data is not unslashed$_GET['styleid'] not unslashed before sanitization. Use wp_unslash() or similar85
- Category
- Security
- Occurrences
- 85
- Severity
- warning
Sample message
$_GET['styleid'] not unslashed before sanitization. Use wp_unslash() or similar
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.77
- Category
- Maintainability
- Occurrences
- 77
- 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.76
- Category
- Maintainability
- Occurrences
- 76
- 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().76
- Category
- Maintainability
- Occurrences
- 76
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $icon_table used in $wpdb->get_results()53
- Category
- Security
- Occurrences
- 53
- Severity
- warning
Sample message
Unescaped parameter $icon_table used in $wpdb->get_results()
Show 15 moreShow less
WARNINGSecurityNonce verification recommended53
- Category
- Security
- Occurrences
- 53
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInterpolated SQL is not prepared51
- Category
- Security
- Occurrences
- 51
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $icon_table at "SELECT * FROM $icon_table WHERE id = %d "
WARNINGSecurityInput is not sanitized33
- Category
- Security
- Occurrences
- 33
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['styleid']
ERRORSecuritySQL query is not prepared25
- Category
- Security
- Occurrences
- 25
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $_POST
ERRORI18nMissing Arg Domain17
- Category
- I18n
- Occurrences
- 17
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORSecurityDatabase parameter is not escaped11
- Category
- Security
- Occurrences
- 11
- Severity
- error
Sample message
Unescaped parameter $_POST['font_awesome'] used in $wpdb->query()\n$_POST['font_awesome'] used without escaping.
ERRORMaintainabilityOffloaded Content10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
ERRORMaintainabilityOffloaded Content6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
ERRORMaintainabilityfile system operations fclose6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
ERRORMaintainabilityfile system operations fopen6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
WARNINGI18nNo Html Wrapped Strings6
- Category
- I18n
- Occurrences
- 6
- Severity
- warning
Sample message
Translatable string should not be wrapped in HTML. Found: '<p class="sbs-6310-error-message">An error occurred, please try again.</p>'
ERRORMaintainabilityLocalhost URL found5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
Do not use Localhost/127.0.0.1/*.local in your code. Found: http://localhost/
WARNINGSecurityReplacements Wrong Number4
- Category
- Security
- Occurrences
- 4
- Severity
- warning
Sample message
Incorrect number of replacements passed to $wpdb->prepare(). Found 1 replacement parameters, expected 10.
WARNINGMaintainabilityNo PHP code found3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.
ERRORMaintainabilityfile system operations fwrite2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
External Connections
Potential connections found in static code analysis.
Outbound calls
29
External assets
154
Incoming endpoints
4
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
Admin AJAX endpoints2
wp_ajax
wp_ajax
Score History
First score snapshot
v1.1
24
Latest
- Findings
- 2,028
- Errors
- 618
- Warnings
- 1,410
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 2,028 | 618 | 1,410 | v1.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.