Displaying fields together using field groups
In addition to fields, the CCK package also provides a module that allows the grouping of various CCK fields into display groups known as field groups. In this recipe, we will be creating a group to contain all fields providing contact information within the company
node type.
Getting ready
We will be using the company node type created earlier in this chapter. Since this recipe uses field groups, it is required that the fieldgroup
module within the CCK package be enabled.
How to do it...
Once the fieldgroup
module has been enabled, the Manage fields form for the company node type should now have an option to also create groups. This form can be accessed by navigating to admin/content/node-type/company/fields
(Home | Administer | Content management | Content types | Company) and clicking on the Manage fields tab at the top.
The Contact field group to hold the Address, Phone, and E-mail address fields can be created using the following procedure:
Scroll...