Guest User

Untitled

a guest
May 27th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Change a field's settings when localized to the page.
  5. *
  6. * @param array $field [ id, settings => [ type, key, label, etc. ] ]
  7. * @return array $field
  8. */
  9. add_filter( 'ninja_forms_localize_field', function( $field ){
  10.  
  11. if( 'my_field' == $field[ 'settings' ][ 'key' ] ) {
  12. // Change the label setting of the field.
  13. $field[ 'settings' ][ 'label' ] = 'New Field Label';
  14. }
  15. return $field;
  16. });
Add Comment
Please, Sign In to add comment