07/28/2014 at 8:43 am
#298167
Keymaster
@ JoselinMane
Not sure why the CSS wouldn’t work for you, it works for me… even when I toggle the entry types, it remains not visible.
Yes there is a way to set the default entry type. First, install the Code Snippets plugin.
Add a new snippet with the following code:
function cn_default_entry_type( $atts ) {
$atts['default']['type'] = 'organization';
return $atts;
}
add_filter( 'cn_admin_metabox_publish_atts', 'cn_default_entry_type', 11 );
Save and activate the new snippet.
That should do the trick.
