Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Remove the column selector for Form #3 in Gravity Forms
  5. */
  6. add_filter( 'gform_entry_list_columns', function( $table_columns, $form_id ) {
  7.  
  8. if( 3 === $form_id ) {
  9. unset( $table_columns['column_selector'] );
  10. }
  11.  
  12. return $table_columns;
  13. }, 10, 2 );
Add Comment
Please, Sign In to add comment