Create high-converting WooCommerce checkout pages, WooCommerce thank you pages & sales funnels with the highest-rated WordPress funnel builder.
Category Scores
Top Issues by Category
maintainability2,428
i18n2,171
security1,150
Issues Details
5,852 issues found in latest scan
Mismatched text domain. Expected 'funnel-builder' but got 'FunnelKit'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$VARS".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"#wfacp-sec-wrapper .wfacp_coderockz_woo_delivery{padding:0 $px"'.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'bwf_email_section_' . $section['type']".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Processing form data without nonce verification.
Unescaped parameter $Sql_Query used in $wpdb->get_col()\n$Sql_Query assigned unsafely at line 442.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
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.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "BWFBlocksOptin_Render_Block".
The $text parameter must be a single text string literal. Found: $address_key_group
Processing form data without nonce verification.
Detected usage of a non-sanitized input variable: $_COOKIE[$attr['key']]
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bwf_clean".
Use placeholders and $wpdb->prepare(); found interpolated variable {$bwf_table} at "TRUNCATE TABLE {$bwf_table}"
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"No such method exists: $name"'.
The $text text string should have translatable content. Found: ''
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$cart_image_filter".
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.
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "FunnelKit".
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.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'funnel-builder' but got 'FunnelKit'. | 1,451 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$VARS". | 1,281 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 531 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"#wfacp-sec-wrapper .wfacp_coderockz_woo_delivery{padding:0 $px"'. | 501 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 366 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'bwf_email_section_' . $section['type']". | 290 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 175 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 173 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 166 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $Sql_Query used in $wpdb->get_col()\n$Sql_Query assigned unsafely at line 442. | 138 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 126 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | 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. | 121 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "BWFBlocksOptin_Render_Block". | 64 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $e_query | 59 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: $address_key_group | 51 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 50 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_COOKIE[$attr['key']] | 46 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bwf_clean". | 40 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable {$bwf_table} at "TRUNCATE TABLE {$bwf_table}" | 34 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"No such method exists: $name"'. | 19 |
| WordPress.WP.I18n.NoEmptyStrings | ERROR | The $text text string should have translatable content. Found: '' | 17 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$cart_image_filter". | 16 |
| WordPress.WP.EnqueuedResourceParameters.NotInFooter | WARNING | 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. | 12 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound | WARNING | Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "FunnelKit". | 11 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | 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. | 11 |
Latest Snapshot
Findings
5,852
Errors
3,278
Warnings
2,574
Score History
First score snapshot
First scan completed
v3.15.0.5 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
v3.15.0.5
25
Latest
- Findings
- 5,852
- Errors
- 3,278
- Warnings
- 2,574
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Latest | 25 | 5,852 | 3,278 | 2,574 | v3.15.0.5 | 2.0.0 | 2026.06-mvp-static-v2 |