Ibtana - Ecommerce Product Addons, you get to explore so many options for editing the product page by simple drag and drop functionality.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,321
11 issue groups
I18n
1,255
4 issue groups
Security
616
10 issue groups
ERRORI18nNon Singular String Literal DomainThe $domain parameter must be a single text string literal. Found: IEPA_TEXT_DOMAIN1,118
- Category
- I18n
- Occurrences
- 1,118
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: IEPA_TEXT_DOMAIN
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$activate_view_more_btn".1,020
- Category
- Maintainability
- Occurrences
- 1,020
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$activate_view_more_btn".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.169
- Category
- Security
- Occurrences
- 169
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar154
- Category
- Security
- Occurrences
- 154
- Severity
- warning
Sample message
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilitystrip tags strip tagsstrip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.123
- Category
- Maintainability
- Occurrences
- 123
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_POST['advanced_click']. Check that the array index exists before using it.94
- Category
- Security
- Occurrences
- 94
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['advanced_click']. Check that the array index exists before using it.
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='ibtanaecommerceproductaddons-sale_counter' data-date-end='$end_date'>"'.90
- Category
- Security
- Occurrences
- 90
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='ibtanaecommerceproductaddons-sale_counter' data-date-end='$end_date'>"'.
ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $cat->name88
- Category
- I18n
- Occurrences
- 88
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $cat->name
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().40
- Category
- I18n
- Occurrences
- 40
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
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 moreShow less
WARNINGSecurityNonce verification recommended34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Processing form data without nonce verification.
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().
WARNINGMaintainabilityNon-prefixed hook name27
- Category
- Maintainability
- Occurrences
- 27
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
ERRORMaintainabilityMissing direct file access protection24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityInterpolated SQL is not prepared22
- Category
- Security
- Occurrences
- 22
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $id at "SELECT * FROM $table_name WHERE theme_id = $id"
WARNINGSecurityInput is not sanitized21
- Category
- Security
- Occurrences
- 21
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['plugin']
WARNINGMaintainabilityNot In Footer18
- Category
- Maintainability
- Occurrences
- 18
- 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.
WARNINGMaintainabilityslow db query tax query16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
Detected usage of tax_query, possible slow query.
ERRORSecuritySQL query is not prepared13
- Category
- Security
- Occurrences
- 13
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $idata
WARNINGSecurityDatabase parameter is not escaped11
- Category
- Security
- Occurrences
- 11
- Severity
- warning
Sample message
Unescaped parameter $table_name used in $wpdb->get_results()\n$slug assigned unsafely at line 64.
ERRORI18nMissing Translators Comment9
- Category
- I18n
- Occurrences
- 9
- 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.
ERRORMaintainabilitydate date8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGSecuritywp redirect wp redirect8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
WARNINGMaintainabilityslow db query meta key7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityNon-prefixed constant7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_CHMOD_FILE".
External Connections
Potential connections found in static code analysis.
Outbound calls
200
External assets
9
Incoming endpoints
25
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
wp_ajax
Admin AJAX endpoints23
admin_post
admin_post
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
11 more hidden
Score History
First score snapshot
v0.4.7.8
23
Latest
- Findings
- 3,265
- Errors
- 1,547
- Warnings
- 1,718
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 3,265 | 1,547 | 1,718 | v0.4.7.8 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.