Feature-packed membership plugin for creating subscription plans, adding recurring payments & content restriction on your membership site.
Category Scores
Top Issues by Category
maintainability3,486
security2,124
i18n1,127
Issues Details
6,983 issues found in latest scan
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'get_custom_bulk_actions_' . $this->post_type".
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.
Processing form data without nonce verification.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_pms_compare_subscription_plans".
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_pms_potx_install".
$_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar
Processing form data without nonce verification.
Function "add_term_meta()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.1.0.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in 'Follow these steps to start a membership site quickly. %1s out of %2s complete.'.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Cozmoslabs_Plugin_Optin_Metadata_Builder".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Cannot save property `{$key}` containing an API resource of type "'.
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.
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.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "PAID_MEMBER_SUBSCRIPTIONS".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$hook".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$context'.
Detected usage of a non-sanitized input variable: $_GET['post']
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.
Unescaped parameter $delay used in $wpdb->get_results()\n$delay assigned unsafely at line 507.
Unescaped parameter $column_name used in $wpdb->get_var()
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'get_custom_bulk_actions_' . $this->post_type". | 1,004 |
| 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. | 959 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 826 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_pms_compare_subscription_plans". | 720 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_pms_potx_install". | 719 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar | 594 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 441 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "add_term_meta()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.1.0. | 240 |
| WordPress.DateTime.RestrictedFunctions.date_date | ERROR | date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead. | 198 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in 'Follow these steps to start a membership site quickly. %1s out of %2s complete.'. | 168 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 128 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Cozmoslabs_Plugin_Optin_Metadata_Builder". | 121 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 119 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 94 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Cannot save property `{$key}` containing an API resource of type "'. | 68 |
| 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. | 63 |
| 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. | 58 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "PAID_MEMBER_SUBSCRIPTIONS". | 45 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$hook". | 35 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$context'. | 35 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['post'] | 33 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_exclude | WARNING | 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. | 26 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $gateways | 25 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $delay used in $wpdb->get_results()\n$delay assigned unsafely at line 507. | 22 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $column_name used in $wpdb->get_var() | 22 |
Latest Snapshot
Findings
6,983
Errors
1,918
Warnings
5,065
Score History
First score snapshot
First scan completed Jun 20, 2026
v3.0.5 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v3.0.5
21
Latest
- Findings
- 6,983
- Errors
- 1,918
- Warnings
- 5,065
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 21 | 6,983 | 1,918 | 5,065 | v3.0.5 | 2.0.0 | 2026.06-mvp-static-v2 |