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 »
  • Post-installation Setup and Configuration (Moderator: Dave Greenberg) »
  • Customization of CiviCRM pages
Pages: [1]

Author Topic: Customization of CiviCRM pages  (Read 769 times)

Nivek

  • Guest
Customization of CiviCRM pages
May 25, 2009, 01:34:12 pm
Hi,

I know its old information but I just don't understand the documentation.  What I want to do is customize the templates so that CiviCRM Home, CiviContribute and CiviEvent, etc. are not the titles to my pages.

I have looked through the tpl files and just found the Form/*php files.  But I am not recognising titles that I can change.  I know its simple but I'm too new at all of it.

Thanks.

Yashodha Chaku

  • Forum Godess / God
  • Ask me questions
  • *****
  • Posts: 755
  • Karma: 57
    • CiviCRM
Re: Customization of CiviCRM pages
May 25, 2009, 03:52:40 pm
Nivek:

You need to check the corresponding php files for the titles. We set the title in setTitle method in CRM/Utils/System.php

For example, if you want to change the CiviCRM Home on the Dashboard to My Home
you would check CRM/Contact/Page/View/DashBoard.php for run function somewhere around line 181 :

Code: [Select]
  CRM_Utils_System::setTitle( ts('CiviCRM Home') );to
Code: [Select]
  CRM_Utils_System::setTitle( ts('My Home') );
HTH
-Yashodha
Found this reply helpful? Contribute NOW and help us improve CiviCRM with the Make it Happen! initiative.

Nivek

  • Guest
Re: Customization of CiviCRM pages
May 25, 2009, 04:32:36 pm
Thank you, Very Much!

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Post-installation Setup and Configuration (Moderator: Dave Greenberg) »
  • Customization of CiviCRM pages

This forum was archived on 2017-11-26.