This documentation refers to an older version of CiviCRM (3.4 / 4.0). The current stable version is 4.1. Please introduce all documentation changes and new material here.

Skip to end of metadata
Go to start of metadata
This page refers to CiviCRM 3.4 and 4.0, current STABLE version.

Documentation Search


CiviCRM 3.4 and 4.0 Documentation

Support and Participation

Developer Resources


CiviCRM books!

Make sure to check out the FLOSS Manual Understanding CiviCRM as well! You can also support this project by ordering a hard copy.

Or support us by buying an eBook or hard copy of Using CiviCRM from Packt Publishing.

Is it possible to remove the dropdown box listing "-all contacts-", "Individuals", "Households", "Organizations" on the "Find Contacts" page? All my users will be students, so any option outside of "Individuals" won't yield any results.

Depending on who needs access to search for what purpose(s), you could either...

  • Create a CiviCRM Profile for your student/users to access for search. This search form would only expose fields you want people to be able to search on, and wouldn't include the contact type dropdown (it only searches on individuals in 1.3 as well). However, this is read-only access.
  • If your users need access to more of the 'back office' CiviCRM functionality (edit/insert contacts etc.), then you'll need to hack the Search template:
civicrm/templates/CRM/Contact/Form/Search/BasicCriteria.tpl

... and replace this row:

<td class="font-size12pt \| {$form.contact_type.label}</td><td> {$form.contact_type.html}</td>

with this one:

<td col="2 | <input name="contact_type" value="" type="hidden \|  &nbsp;</td>
Labels
  • None