CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using Core CiviCRM Functions (Moderator: Yashodha Chaku) »
  • Relationships missing from admin
Pages: [1]

Author Topic: Relationships missing from admin  (Read 333 times)

Celos

  • I’m new here
  • *
  • Posts: 6
  • Karma: 0
  • CiviCRM version: 4.1.x
  • CMS version: Joomla 2.5.x
  • MySQL version: 5.5.x
  • PHP version: 5.3.x
Relationships missing from admin
September 10, 2012, 12:44:37 pm
The problem I'm having is that the Relationships tab in contact view is missing. The functionality is there, as I was able to expose the tab with a simple plugin (code below) and adding/removing/viewing relationships is possible from that entry point. The setting to enable the tab in the administration section under "Settings - Display Preferences - Viewing Contacts" is missing. Is there any way I could manually restore it? The database has been upgraded from 3.1.x through to 4.1.6, could that cause the issue?

Code: [Select]
function civicrm_tabs( &$tabs, $contactID ) {
$url = CRM_Utils_System::url( 'civicrm/contact/view/rel', "reset=1&snippet=1&force=1&cid=$contactID" );
$tabs[] = array( 'id' => 'relationships',
'url'   => $url,
                        'title' => 'Relationships',
'weight' => 300
);
}

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using Core CiviCRM Functions (Moderator: Yashodha Chaku) »
  • Relationships missing from admin

This forum was archived on 2017-11-26.