@ Trevor
re: Are there any paid templates that let me set Organization as the default entry
You do not need a template for this, you need a small code snippet that changes the default entry type. I’ll give you the instructions at the end of this post.
re: and then the fields to default Work fields?
Sorry, but there is no way that I can think of to do this.
re: Also, are there any that would allow me to delete the Work heading in the published listing?
Yes, all the premium templates, there are shortcode options they enable that can be used to remove the label completely. Another options, and perhaps the solution to the previous question I just answered is in this QuickTip.
Here’s the code snippet instructions for changing the default entry type…
- 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.
Hope that helps!
-
This reply was modified 8 years, 4 months ago by
Steven Zahm.