As of 1.7, you can create customized versions of the standard CiviCRM forms and pages for your site. This gives you a lot of power to modify the CiviCRM user interfaces without requiring advanced programming skills - the templates use HTML plus a fairly simple scripting languge. It also means you won't lose your customizations when you upgrade (although it is possible that changes in the core code could affect your templates - and testing after upgrades is essential). First Time Configuration
Create a Custom ScreenThese steps are for any "built-in" screen (e.g. the Contact Summary screen). Creating a custom Profile form or page are covered in the next section.
Create a Custom Screen for Contact SubTypesYou can have customized view/edit screens for contact subtypes in CiviCRM. This allows you to have different views for your specific contact subtypes.
To override edit screen : put subTypeName.tpl file in 'templates/CRM/Contact/Form/Edit/SubType/' directory.
Custom Profile / Contribution / Event Registration ScreensThe process for customizing Profiles / Contribution / Event Registration is the same as above EXCEPT that you have the flexibility to create different screen "versions" for each of your configured Profile / Contribution / Event Registration Pages. The structure for contribution and event registration pages is similar to that of profile explained here. You do this by creating an extra directory layer in your custom directory tree that references the Profile's ID.
Profile ID's are listed in the Administer CiviCRM » CiviCRM Profiles table (ID column).
Referencing Individual Fields in Profile PagesProfile view and edit pages consist of several template files working together. The View.tpl (detail view pages) and Edit.tpl (edit pages) each reference a corresponding Dynamic.tpl file, which cycles through the fields found in the profile and displays them in a table. The layout is very basic--- one column is used for the field label, the other column for the field value or form field. Often, when customizing profile pages, you may want to reference specific fields and layout them out in a customized display. To do so you would work with the View.tpl/Edit.tpl files and insert smarty tokens for the profile fields array. The profile fields array is structured as follows:
So you would insert the following token into the template file to reference the First Name label and field value in Profile 3:
Custom fields in your profile are referenced using the custom ID value, e.g. {$profileFields_3.custom_38.value}. To customize fields displayed within Drupal profiles, edit Dynamic.tpl and use $profileFields => Field Name => label/value (e.g. {$profileFields.first_name.value} - without the profile ID) to reference individual profile fields.
Changing Show/Hide Default on Collapsible FieldsetsIn the words of Dave Greenberg "This is a bit tricky because the collapse vs. expand states are controlled via showBlocks and hideBlocks arrays that are passed into a jscript function by the PHP code." So I will show you how to do this using an example. If you want to make a fieldset that is by default collapsible or hidden on a CiviCRM Contact View screen, you would need to follow all the above instructions to first get the correct custom template and put it in the proper location. Let's assume you want to edit the CRM/Contact/Page/View/Tabbed.tpl screen, which is the default contact view. You would copy that into your custom template location. Then you will need to determine the name of the fieldset that you want to change the default state of. Let's say I want to collapse the "Communications Preferences" fieldset by default. Look in the file for that section, so in this case I find the line that has the following: We can see that there's a javascript onclick call which references 'commPrefs_show' and 'commPrefs'. So since this fieldset is by default showing up, we need to force the javascript to reverse it. So next you need to scroll to the bottom of this file and look for the following javascript call: The way we will fix this is to reverse the hide/show states of Communication Preferences. We will add the following two lines after And that will fix it. Our final javascript call will look like this: So for any other fieldset, you can find the show/hide names by looking for the fieldset section in the code as I demonstrated here. Just look at the <a> Using jQuery to hide contribution amounts, event fees, or membership optionsIt's pretty easy to do, but the key is identifying the unique 'id' of the radio button of the item you wish to hide. Use Firebug to click on the radio button and copy and paste the id number. The ids are cryptic and will look something like this example: CIVICRM_QFID_369_2 Then use some jQuery. You can put this jQuery in one of three places. Here is an example of the jQuery code. NOTE: there is no need to use drupal_add_js() or any other function. This is just pure jQuery code. Copy and paste, filling in the id of your field where indicated This jQuery does 3 things: Hides the radio button itself, hides the label, and hides the <br> tag immediately after the label. So easy. If you are using option #3 above you can use this jQuery in conjunction with $user->roles; array to hide certain options for certain roles only. Move the placement of hook form elementsWhen defining CiviCRM fields in a Drupal module (such as Civievent Discount), CiviCRM normally will place the fields at the top of the form. If you want the placement changed, follow these steps.
Unknown macro: {if $beginHookFormElements}
and Unknown macro: {/if}
.
Unknown macro: {include file="CRM/common/hookFormElements.tpl"}
wherever you want it to appear in the template. Include wherever body.tpl is also referenced.
|
Étiquette