02/08/2016 at 9:57 am
#363959
Keymaster
@ John
To change the name, you can use the Say What plugin as described here. The only change would be the Text domain. You would use connections_hobbies
instead.
Change the field options, you can hook into the cn_hobby_options
filter like so:
add_filter( 'cn_hobby_options', 'cn_hobby_options' );
function cn_hobby_options( $options ) {
$options = array( 'Acting', 'Dancing', 'Singing' );
return $options;
}
Hope that helps, let me know.