06/13/2016 at 12:03 pm
#379314
Keymaster
@ ottomek
re: Would there be a snippet I could add to remove “Organization” from the radio button in the admin area? Not the Organization field name but the Organization Directory type?
Here’s the snippet:
function ottomek_link_entry_types( $atts ) {
$atts['entry_type'] = array( __( 'Individual', 'connections' ) => 'individual' );
$atts['default']['type'] = 'individual';
$atts['default']['visibility'] = 'public';
return $atts;
}
add_filter( 'cn_admin_metabox_publish_atts', 'ottomek_link_entry_types', 11 );
Hope that helps!
