Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function yourmodule_form_alter(&$form,$form_state,$form_id){
  2. if ($form_id == "your_views_exposeform") {
  3. // first try dpm($fom); to see what you have there
  4. foreach($form['expose_your_field']['und']['#options'] as &$item){
  5. // repalce label of select option items with what you want
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement