09/05/2014 at 11:45 am
#302874
Keymaster
@ Randy
Good to hear you have it going fine now!
re: Is there a search function other than selecting letter of the alphabet?
Yes. Many of the premium templates come with a user selectable category filter and keyword search. cMap is bar far the most popular template.
re: Is there a way to change as a whole form individual to organization or do I have to do it one at a time?
The one in the admin when adding an entry, yes? What can be done is set the Organization as 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 snippet.
Now the default entry type should be Organization.
Hope that helps!
