Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Require the Review content field if the submitted rating is less than 4-stars
- *
- * Make sure to set the review field as not required otherwise this will do nothing!
- *
- * @param \GeminiLabs\SiteReviews\Request $request
- */
- add_filter('site-reviews/validation/rules', function (array $rules, $request): array {
- if ($request->rating < 4) {
- $rules['content'] = 'required';
- }
- return $rules;
- }, 100, 2);
Advertisement
Add Comment
Please, Sign In to add comment