Advertisement
geminilabs

Untitled

Oct 11th, 2023
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. /**
  2.  * Exclude the Site Reviews star rating select from select2
  3.  */
  4. add_filter('site-reviews/field/rating', function ($field) {
  5.     $field['class'] .= ' hide';
  6.     return $field;
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement