Tagged Questions

The Content Construction Kit is a Drupal module that allows users to add custom fields to content types.

learn more… | top users | synonyms

54
votes
9answers
68k views

How to quickly theme a view?

I've defined a view with the CCK and View 2 modules. I would like to quickly define a template specific to this view. Any tutorial or information on this ? What are the files I need to modify ? ...
12
votes
4answers
15k views

Advanced search with Drupal (Views and CCK)

I'm building a site where products are hold in a content type created with CCK. Products can be associated with multiple taxonomy vocabularities. Now I need an advanced product search which user could ...
9
votes
4answers
3k views

Removing [nid:n] in nodereference autocomplete

Using the autocomplete field for a cck nodereference always displays the node id as a cryptic bracketed extension: Page Title [nid:23] I understand that this ensures that selections are unique in ...
5
votes
3answers
4k views

Drupal 7: Candidate page tpl name for particular custom content type entry

I'm working on a Drupal 7 website. I created custom content type for works. I have many fields, and some of them are related to page layout like particular page bg for each entry. So I need custom ...
5
votes
3answers
2k views

'add another item' in non-CCK Drupal forms

CCK for Drupal has the handy feature of allowing a single CCK field to accept multiple values via a "add another item" button that results in an array of data in the node. I'm wondering if there's ...
5
votes
4answers
2k views

Drupal Content Type (Restaurant) Design

I have one content type Restaurant. For each restaurant, I would like to record their menu. The sample data would look like this: Beverages Coke ...
5
votes
4answers
4k views

Creating Drupal CCK content programatically/ via API

I am working with a Drupal 6.x system to create exercise / personal training programmes, and am using the CCK with content types of Exercise and Programme, where Programme contains a few header fields ...
4
votes
1answer
37 views

How to list the fields in a particular node-type?

I would like to generate a list of all the fields in a particular node-type. Looking at the API for content_fields, I tried this: content_fields(NULL, $nodetype); Unfortunately, this returns all ...
4
votes
2answers
2k views

How to list CCK fields by content type in Drupal

To get a list of a content type's cck fields, I was hoping to use: drupal_get_schema('content_type_mycontenttype'); but that leaves out fields with multiple values. Is there a simple call to use ...
4
votes
4answers
5k views

Drupal - How to update a CCK NodeReference field programmatically?

I'm trying to create a node (B type) & assign it to a A type node's CCK nodereference field using node_save() method. $node_type_A = node_load($some_nid); ...
4
votes
1answer
888 views

Drupal Nodereference in a custom form

I have a custom Drupal FAPI form that supports a fairly complex workflow and I would like to add a Nodereference field to it. Although I've found people who have included Nodereference fields on ...
4
votes
3answers
381 views

Link between CCK field and view

I want to use a view to select nodes in a content type field. This view must receive an argument that is another field of the content type. Can someone explain me how to pass the argument from the ...
4
votes
5answers
11k views

How do you remove the default title and body fields in a CCK generated Drupal content-type?

When you create a new content type in Drupal using the Content Creation Kit, you automatically get Title and Body fields in the generated form. Is there a way to remove them?
3
votes
1answer
129 views

Drupal, create multiple CCK input form in a page

I have CCK Members (title, age, ...) and because of the huge number of members I have, it would be tiresome to update some of the fields (sample below is age-field) one-by-one. I need a way to build ...
3
votes
3answers
158 views

publish content after varification by admin

I have created video gallery with help of cck . I have created a content type. Now My requirment is that when user add video it should not be published to all user.When admin active that content then ...
3
votes
5answers
1k views

Drupal 6 Programmatically adding an image to a FileField

How do I programmatically add an image to a file field? I have an url/filepath of an image that I wish to upload. I have tried the following: $newNode->field_profile_image[0]['value'] = ...
3
votes
0answers
391 views

drupal 7 advertising (or: I dislike the ad module anyway)

Hey folks! Todays big question is this: I have a Drupal gig coming up and I've decided to use D7! Wow! This is your basic ad driven magazine type site (the second I'll have done). Unfortunatly: ...
3
votes
2answers
179 views

Database within a database (a la CCK without Drupal)

I am hoping to build a Codeigniter library similar to Drupal's CCK, albeit in an extremely simplified version. I am wondering what kind of database structure would work best to achieve my ultimate ...
3
votes
2answers
941 views

How do I set the value for a CCK Node-reference field automatically when create form submits

I have a content type (A) that references a single node of a different content type (B). The node referenced (B) can be programmatically determined using the information for the user creating this new ...
3
votes
2answers
965 views

Drupal CCK date field with just hours and minutes

how cann i create a date field in drupal just with houers an minutes without years and months. thx
3
votes
1answer
284 views

A CCK field that's a random number

Anyone aware of a CCK module that adds a text field that's just a randomly generated number? This means that when the user tries to create a fresh node, he sees a pre-populated random number as one ...
3
votes
1answer
376 views

Why does $form_state['values'] get obliterated in drupal_process_form()?

I'm trying to programmatically store CCK type nodes using drupal_execute(). Empty nodes get created; none of the CCK fields is saved. Evidently the first line in drupal_process_form() is responsible: ...
3
votes
2answers
307 views

Collapse taxonomy fieldset on node form by default

While creating a (custom) content in Drupal, I have three vocabularies. But these make my create content page very heavy. I want to collapse the Vocubalary fieldset by default and want it to expand ...
3
votes
2answers
2k views

Allowed Values list in drupal CCK Fields

I'm basically looking to simply print out each of the allowed values in a CCK field.. i know the allowed values are stored inside a text field within the table: 'content_node_field'. the values are ...
3
votes
4answers
784 views

Creating a draft version of the page before publishing in Drupal 6?

I've been looking for a good way to handle revisions in Drupal, but I am yet to succeed. For some reason there is no built in way to save a draft (that I've found so far), and the modules I've tried ...
3
votes
1answer
548 views

Drupal 5: CCK fields in custom content type

I have module that implements custom content type via NodeAPI hooks (hook_insert, hook_update etc). I want to add CCK field to this content type and populate it via hook_nodeapi calls like create or ...
3
votes
2answers
783 views

Drupal permissions not showing for custom content type

I have a custom content type in Drupal which was created using CCK. The create/edit permissions for this type are not showing up in the node module permissions, although other cck types are. This ...
3
votes
1answer
28 views

Can I have nodereferences with thumbnails in Drupal?

Can I have nodereferences with thumbnails? By default I only get title+link.
3
votes
1answer
265 views

Drupal: how to rate node filefields? [closed]

I have a node type called 'movie' which may contain several subtitle files using the CCK FileField module. Now I'm dealing with FiveStars module, I need to rate each subtitle separately! so the user ...
3
votes
4answers
7k views

Drupal Custom CCK field with multiple child fields

Is there a way of creating a composite field that can have multiple values, with each value having another group of composite values? E.g. we want to have this structure at the end: Group 1 ...
3
votes
3answers
2k views

How do you migrate CCK fields between environments in Drupal?

The Content Construction Kit (CCK) is one of the most useful Drupal modules. It allows you to easily add custom fields to a content type. However, these new fields are created through Drupal itself ...
3
votes
2answers
305 views

Changing CCK Title for Form

By default a CCK form creation has a title of the form Create [Your Content Type Name Here] I want to change mine to Register for Such and Such It was suggested that I could use ...
2
votes
2answers
40 views

Create a page to edit all fields from a custom content type (D7)

I have a custom content type that has a custom field called [stock] I would like to have a single page that shows me ALL nodes [stock] values in a list and allows me to change the value. Is this ...
2
votes
1answer
234 views

drupal 7 - attach file to a node by code

I wanted to associate a file to a node. so far so good. create a cck type file, and the problem was solved. but I can not do this, I do not want the user to choose the file. the file in question is ...
2
votes
1answer
171 views

How to get the field values of a content type in drupal

How can I get the field value of a custom content type. I have created a custom content type using the CCK module. Is there any function to get the array of the fields of a particular content type. ...
2
votes
1answer
75 views

CCK Field, minimum number of values

I have created a module which implements a CCK field. When adding the field to a content type, I have set the number of values to unlimited, and set the field to be required. Is there a way to set ...
2
votes
2answers
278 views

CCk fields to be grouped with add another item

I created a new content type in Drupal 6 and added fields using CCK fields like country, state and zip code. I created a group named address so that it looks like: Address --- Country --- State --- ...
2
votes
1answer
97 views

How to make a top 10 node list in drupal

I am trying to make a View with "Top 10" nodes where the position is granted by an administrator through a CCK text field with 10 options (1 to 10 points). I want that once an option is chosen, that ...
2
votes
2answers
204 views

Forms as modal windows

i got a form and i want to show it as window dialog and able to submit it via dialog how i do that? what module i need? also, how can i make that i get unique class for each form element?
2
votes
2answers
119 views

Circular Sorting in Drupal 6, CCK & Views

I had an interesting request from a client today and I'm not exactly sure the best way to solve it using Drupal Views. They currently have a "Team Member" content type that represents members of their ...
2
votes
1answer
94 views

cck imagefield upload problem?

I have a cck field of type "file". I used this for uploading of images. On my local server running on apache, uploading of image using the field is fine. But on the deployed version or the web server, ...
2
votes
3answers
133 views

Drupal: hook_search only for a content type

i would like to build a custom search module in Drupal6 for searching through CCK; i need the user to search between his nodes (node.uid=x) and of a certain type (type='xyz') ... i think i have to ...
2
votes
1answer
381 views

how to bulk edit node in drupal?

I add 1 CCK field and want edit this for any content(500 nodes). how to edit this nodes together? Tnx.
2
votes
1answer
225 views

Drupal: Additional attributes for taxonomy terms

I need to assign dynamic attributes (like entity types) to a custom content type that created. Those entity types have a name and 2 additional attributes. I've not seen a way to assign additional ...
2
votes
2answers
338 views

Drupal which is better: custom table or CCK?

I need to develop a Drupal site on which, among other things, a user can compile a form containing a list of its contacts and appointments with many custom fields. I don't know which is the better ...
2
votes
2answers
104 views

Measurement sheets in Drupal 6

I'm doing a project for a surveying company in Drupal 6. Ultimately, employees will need to enter measurements into a new content type. Currently they do it in a big Excel spreadsheet that has a bunch ...
2
votes
1answer
822 views

How to query cck field in drupal?

I have two content types (job_post and application) linked using the node reference + node reference url nodes. When I click a link in a job_post node, a new application node is created, so that ...
2
votes
2answers
93 views

Use an exported CCK content type in an install schema of a module

I have a content type built by CCK in Drupal 6. If I export it, I get a php code. How can use this code in my module's hook_install, to have this content types imported when the module is installed?
2
votes
2answers
526 views

jQuery access input field by name[value][id]

I have some HTML code like this: <input id="fieldname-1" name="field_name[value][1]" value="1" type="checkbox" /> <input id="fieldname-2" name="field_name[value][2]" value="2" ...
2
votes
1answer
296 views

How could I have a cck field get the computed value of another cck field?

Lets say I have a cck field called foo. It is a text field with php input. Say the php code in foo field results in the value of 1,256 when computed. I need cck field called bar to pick ...

1 2 3 4 5 10