10/30/2014 at 11:35 am
#308549
Keymaster
re: Jim
Yes, there are filters in place where additional types can be added.
function cn_add_address_types( $options ) {
$options['club'] = 'Club';
$options['location'] = 'Location';
return $options;
}
add_filter( 'cn_address_options', 'cn_add_address_types' );
function cn_add_phone_types( $options ) {
$options['club'] = 'Club';
$options['location'] = 'Location';
return $options;
}
add_filter( 'cn_phone_options', 'cn_add_phone_types' );
function cn_add_email_types( $options ) {
$options['club'] = 'Club';
$options['location'] = 'Location';
return $options;
}
add_filter( 'cn_email_options', 'cn_add_email_types' );
To use the filters install the Code Snippets plugin.
Create a new snippet with the code from above.
Save and activate the new snippet.
Hope that helps!
If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
