05/26/2015 at 5:07 pm
#335697
Keymaster
@ Kurt
Oh, I see… yes, that is true. Only those who have access to the Connections : Manage admin page can change the entry type. The Link admin profile page, that always was limited to only the Individual and Organization entry types.
This can be re-enabled.
First, install the Code Snippets plugin.
Add a new snippet with the following code:
add_filter( 'cn_metabox_publish_atts', 'cn_link_add_family_type_option' );
function cn_link_add_family_type_option( $atts ) {
$atts['entry_type'] = array(
__( 'Individual', 'connections' ) => 'individual',
__( 'Organization', 'connections' ) => 'organization',
__( 'Family', 'connections' ) => 'family'
);
return $atts;
}
Save and activate the new snippet.
The family entry type should now be present on the Link admin profile page.
Hope that helps!
