Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active May 24, 2016 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjohnson/d0b36eb61f3c4e793589b5529f67c342 to your computer and use it in GitHub Desktop.
Save kjohnson/d0b36eb61f3c4e793589b5529f67c342 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'ninja_forms_upgrade_settings', 'upgrade_my_form_settings' );
function upgrade_my_form_settings( $form_data ){
$old_setting = $form_data[ 'old_setting' ];
// Modify $old_setting
$form_data[ 'new_setting' ] = $old_setting;
return $form_data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment