CiviCRM/Demo: Difference between revisions

m added Category:CRM using HotCat
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Note: The CiviCRM project hosts demo sites at https://civicrm.org/demo
At Coastal Trails Coalition, we've sought to improve operations for quite some time.  A systematic review of the tools, people and processes involved has led to the focus on implementing a Constituent Relationship Management (CRM) system.  A comprehensive CRM system serves as the digital control center for the organization.  As is typical, our data are spread across multiple systems and functions which leads to a host of operational problems such as inefficiency, lack of responsiveness, duplication of effort, and generally making it truly difficult to aggregate in a way that allows for a holistic view of relevant information.  A CRM can dramatically improve this situation.
At Coastal Trails Coalition, we've sought to improve operations for quite some time.  A systematic review of the tools, people and processes involved has led to the focus on implementing a Constituent Relationship Management (CRM) system.  A comprehensive CRM system serves as the digital control center for the organization.  As is typical, our data are spread across multiple systems and functions which leads to a host of operational problems such as inefficiency, lack of responsiveness, duplication of effort, and generally making it truly difficult to aggregate in a way that allows for a holistic view of relevant information.  A CRM can dramatically improve this situation.


Line 150: Line 152:
# If you want to move Wordpress to it's own directory https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
# If you want to move Wordpress to it's own directory https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
# If you want to get rid of the built-in "household" contact type (if you don't use it) since there is no configuration setting or UI to do this.  
# If you want to get rid of the built-in "household" contact type (if you don't use it) since there is no configuration setting or UI to do this.  
<source lang="sql">
<syntaxhighlight lang="sql">
UPDATE civicrm_contact_type SET is_active = 0 WHERE name = 'Household';
UPDATE civicrm_contact_type SET is_active = 0 WHERE name = 'Household';
</source>
</syntaxhighlight>
or, you can do it in the API explorer if you don't have database access.<ref>https://civicrm.stackexchange.com/questions/54/how-can-i-disable-households/57#57  </ref>
or, you can do it in the API explorer if you don't have database access.<ref>https://civicrm.stackexchange.com/questions/54/how-can-i-disable-households/57#57  </ref>