geminilabs

[site-reviews] exclude select2 from rating

Aug 20th, 2025
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 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'] .= ' stm_not_select2';
  6.     return $field;
  7. });
  8.  
Advertisement
Add Comment
Please, Sign In to add comment