Display Facebook Page reviews and recommendations in a slider or grid. Uses the official Facebook API. Reviews are saved locally on your server for fa …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
2,162
14 issue groups
Security
1,043
10 issue groups
I18n
191
1 issue group
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,611
- Category
- Maintainability
- Occurrences
- 1,611
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.613
- Category
- Security
- Occurrences
- 613
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'wp-facebook-reviews' but got 'wp-airbnb-review-slider'.191
- Category
- I18n
- Occurrences
- 191
- Severity
- error
Sample message
Mismatched text domain. Expected 'wp-facebook-reviews' but got 'wp-airbnb-review-slider'.
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.128
- Category
- Security
- Occurrences
- 128
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORMaintainabilitywp function not compatible with requires wpFunction "get_blog_count()" requires WordPress 3.7.0, but your plugin minimum supported version is WordPress 3.0.1.114
- Category
- Maintainability
- Occurrences
- 114
- Severity
- error
Sample message
Function "get_blog_count()" requires WordPress 3.7.0, but your plugin minimum supported version is WordPress 3.0.1.
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".108
- Category
- Maintainability
- Occurrences
- 108
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".
WARNINGMaintainabilityNon Prefixed Constant FoundGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".93
- Category
- Maintainability
- Occurrences
- 93
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".
WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_GET['newvalue']. Check that the array index exists before using it.69
- Category
- Security
- Occurrences
- 69
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['newvalue']. Check that the array index exists before using it.
WARNINGSecurityMissing Unslash$_GET['hiderev'] not unslashed before sanitization. Use wp_unslash() or similar67
- Category
- Security
- Occurrences
- 67
- Severity
- warning
Sample message
$_GET['hiderev'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNon Prefixed Class FoundClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "FS_Admin_Menu_Manager".64
- Category
- Maintainability
- Occurrences
- 64
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "FS_Admin_Menu_Manager".
Show 15 moreShow less
WARNINGMaintainabilityDirect Query59
- Category
- Maintainability
- Occurrences
- 59
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching53
- Category
- Maintainability
- Occurrences
- 53
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityRecommended38
- Category
- Security
- Occurrences
- 38
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityUnescaped DBParameter36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
Unescaped parameter $table_name used in $wpdb->get_col()\n$table_name assigned unsafely at line 1155.
ERRORSecurityNot Prepared32
- Category
- Security
- Occurrences
- 32
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $ratingquery
WARNINGSecurityInterpolated Not Prepared26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $newfileurl at "UPDATE $table_name SET userpiclocal = '$newfileurl' WHERE id = %d AND reviewer_id = %s"
WARNINGSecurityInput Not Sanitized24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['hiderev']
ERRORMaintainabilitymissing direct file access protection17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilityOffloaded Content10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
WARNINGMaintainabilitySchema Change10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
ERRORSecurityException Not Escaped10
- Category
- Security
- Occurrences
- 10
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$message'.
ERRORMaintainabilityfile system operations chmod6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod().
ERRORMaintainabilityfile system operations mkdir6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
ERRORMaintainabilityunlink unlink6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORMaintainabilitydate date5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Score History
First score snapshot
v14.1
25
Latest
- Findings
- 3,465
- Errors
- 1,186
- Warnings
- 2,279
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 3,465 | 1,186 | 2,279 | v14.1 | 2.0.0 |