Book Image

CiviCRM Cookbook

Book Image

CiviCRM Cookbook

Overview of this book

CiviCRM is a web-based, open source, Constituent Relationship Management (CRM) software geared toward meeting the needs of non-profit and other civic-sector organizations.Organizations realize their mission via CiviCRM through contact management, fundraising, event management, member management, mass e-mail marketing, peer-to-peer campaigns, case management, and much more.CiviCRM is localized in over 20 languages including: Chinese (Taiwan, China), Dutch, English (Australia, Canada, U.S., UK), French (France, Canada), German, Italian, Japanese, Russian, and Swedish.CiviCRM Cookbook will enhance your CiviCRM skills. It has recipes to help you use CiviCRM more efficiently, integrate it with CMSs, and also develop CiviCRM.This book begins with recipes that help save time and effort with CiviCRM. This is followed by recipes for organizing data more efficiently and managing profiles.Then you will learn authentication and authorization and managing communication with contacts.Then you will be guided on using the searching feature and preparing reports. We will then talk about integrating Drupal and CiviCRM. You will also be taught to manage events effectively. Finally, learn about CiviCampaign, Civimember, and developing CiviCRM.
Table of Contents (19 chapters)
CiviCRM Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Controlling the search result columns using profiles


CiviCRM uses a default template to display search results. There are columns for the contact name, addressing, and other contact data. What if you want it to display other data instead, such as custom data fields you have created? We can use CiviCRM profiles to achieve this.

How to do it…

In this recipe we couple the power of CiviCRM profiles with Advanced Search to create customized search result pages.

  1. Navigate to Administer | Customize Data and Screens | Profiles and add a new profile.

  2. Select Search Views in the Used For field.

  3. Save the profile and then add in the fields you want to show in your search results. You can only add in fields available to Contacts. In the following example we added in some custom data fields for organization contacts.

  4. Make sure that each field set for Public Pages is included in the results table. You only need to set them to View Only for the Search Views profiles:

  5. Navigate to Search | Advanced Search. You can...