01/29/2019 at 12:37 pm
#483017
Keymaster
@ Wes
This is possible, but would require a PHP filter. Install the Code Snippets plugin. Add a new snippet with the following code:
add_filter( 'cn_family_relation_options', 'custom_cn_family_relation_options' );
function custom_cn_family_relation_options( $options ) {
$options['head_of_household'] = 'Head of Household';
return $options;
}
Save and activate the code snippet. after you do, this will appear as a new option.
Hope this helps!
