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

learn more… | top users | synonyms

3
votes
1answer
35 views

Joomla - Custom Field doesn't show-up on Edit/Update

I've followed this Tutorial to add a custom field to the article content type and I was successful to make a new one with adding the following code: In File : ...
0
votes
0answers
8 views

Port back to d6 $instance

I have this code that I am trying to get back to d6 $field_name = variable_get('blogger_importer_node_tag_field', ''); $instance = ...
0
votes
0answers
30 views

Page crash after adding new field in contenttype in Drupal 6

I've added a new simple text field to a content type in Drupal 6. It works just fine, but after I've added some data into this new field, other pages that doesn't even contain my content type with the ...
0
votes
0answers
13 views

How to hide some fields from user in add content page?

I have a content type with some fields created using cck module in Drupal 6 . I want user just fill in some of them in create content page and doesn't see others which will fill later by admin. How ...
0
votes
1answer
20 views

How to put two cck fields in add content page in drupal 6

I have created a content type in Drupal 6. I want to add an input field to a number and a select(dropdown) field to get Year/months. They should be next to each other in add content page. User ...
0
votes
1answer
26 views

Error when adding a new cck field

For some reason I get error on lots of pages after adding a simple text field to a content type. And error on pages that doesn't use the content type, and hasn't any relation to the modified content ...
0
votes
3answers
46 views

Hide cck field based on role

Im looking for a way to hide a cck field for every one except for one specific role. I know that there is a module, Content Permission module, that takes good care of this. But I have taken over a ...
-2
votes
1answer
29 views

How to add field for Video uploading in drupal? [closed]

i am new to Drupal and using drupal 7,i have a content type.i added few fields in that,now i want to add another filed for video uploading. how to add this field?
0
votes
1answer
56 views

Drupal 7 images not showing in Articles

My Configuration : Installed MAMP, then copied drupal to htdocs folder. Configured drupal. Added CKEditor, Transliteration, and CKEditor SWF modules. I created an article and uploaded an image from ...
0
votes
0answers
35 views

Is there a library, class, or any other solution on php, allowing to create “on the fly” custom entities (objects), add custom field to them?

Is there a library, class, or any other solution on php, allowing to create "on the fly" custom entities (objects), add custom field to them, generate user forms and to save the data into DB for ...
0
votes
1answer
46 views

Dynamic Generation of Fields for a Custom Content Type

I am developing a custom content type by using CCK and new module as described in http://drupal.org/node/1044248 Besides the standard fields, it can have 1 - N additional fields. N is dynamic. ...
0
votes
0answers
71 views

Drupal 6 views - filter cck date field by another cck date field

I need to build a report of delivered assets, and I need to filter the the results on delivery date date field - by the assets date field (where delivery log and assets are two different content ...
0
votes
1answer
34 views

Drupal 6 - “Link this field to node” not italicized for first list item

Using CCK and a View, I have a block that displays 3 fields from my most recent content atricles. The first field is "Node:Title" and I have the box checked for 'Link this field to its node". The ...
1
vote
2answers
56 views

Make different div within different class in the same line

I have something like this: <div class="wrapper" style="display:block;"> <div class="field1"> <div class="label">Label1</div> <div class="item">Item ...
1
vote
1answer
133 views

Another save button on node form

I want to add a button "Save and add more" to node add form drupal 6. on click on this button page should redirect to same node add form after saving node. I have a content type child to add Child, ...
0
votes
3answers
144 views

Add custom form data to Drupal module without using CCK fields

Iam very new to Drupal 7 so bear with me. I have created a jQueryUI drag and drop interface with JQueryUI tabs. My problem is i cant find the correct hook to add this custom interface to the admin ...
0
votes
0answers
99 views

JSON post to CCK field? (Drupal 6)

I am having a problem when sending data to my Drupal server using JSON from my JQuery Mobile app. My node structure contains a CCK field I created which has the following structure ...
0
votes
1answer
49 views

Drupal - CCK - Node reference - Button for adding new nodes

For example I have created the new node type with reference field in Drupal. I want to have aa button near the reference field for adding a new node of referenced type. And return to editing form ...
0
votes
1answer
48 views

Getting random path hierarchy for CCK fields inside form array

I have created a custom entity and i'm using CCK fields. Each bundle has it's own fields. For example: function MYMODULE_install() { // Check if our field is not already created. if ...
0
votes
3answers
193 views

programatically insert content with image field in Drupal

I'm trying to write PHP to insert lots of content into my website's drupal 6 database. The content type has got 3 custom fields: field_theme_preview_demo_link - text field ...
0
votes
1answer
116 views

Add cck field to existing author fieldset in Drupal 7

I've created my own cck boolean field 'Show author' to a custom node type. The node type has the default author fieldset by node.module, where you can set author and date. I want to show my own field ...
0
votes
1answer
210 views

Drupal 7 multiple fieldset

I want to make a custom type of node. In this one, some informations and the ability to link multiple documents (0->n documents). Until here no problem, I put an "unlimited" number of values. Now, I ...
0
votes
1answer
142 views

Drupal-6 CCK field required depending on another fields value

I have a form that has a bunch of CCK fields, one of which is a master "request type" field. The other fields on the form are required depending on the state of the master field. Example form: ...
0
votes
0answers
44 views

Control default display settings for custom CCK field in Drupal

I'm developing a custom Drupal module that provides a CCK field. In my module, I would like to define the default settings for the display of the field in teaser and full node and also of its label. I ...
0
votes
0answers
28 views

Dynamic user registration in drupal as per user register

I'm creating drupal website for university and i need user profile registration as per their profile means if user is Staff then form fields should be different and if user is student/alumni then form ...
1
vote
1answer
64 views

Taxonomy menu containing CCK field as child/ sub menu

Hello I have developed few sites using Drupal and this is the first time I getting a requirement from a client. The site is about a vehicle store. so when creating a vehicle there is Name, Make, ...
4
votes
2answers
1k views

Add allowed values list programmatically in drupal 7 CCK field “list_text”

I was wondering if i can create programmatically a CCK field instance and insert the "allowed_values" in a single stage. So i tried this: field_create_instance(array( 'field_name' => 'card ...
1
vote
2answers
81 views

What are the benefits of reusing an existing CCK field for a content type?

What are the benefits of reusing an existing field for a content type? Alternatively, what are the benefits of making a new field for a new content type? For example, I have a content type called ...
0
votes
0answers
52 views

Drupal 6.x How to autofill custom content type with referenced tables

I ve created a custom content type called task. So users can create tasks and put all infos in this type. Then I list this tasks in a view table: task1, name, description, startTime task2, name, ...
0
votes
0answers
30 views

Filter views based upon node reference

I have a form where the user can make purchases based upon their account. A user is linked to one/multiple accounts(this is by a new cck content type which I define user_account_map). Now when the ...
1
vote
1answer
46 views

Drupal 7.12 Translate Custom Fields

How do you translate custom fields in Drupal 7.12? I have came across the Entity Translation module though it also supports 7.15+ core, Any ideas? greatly appreciated thanks
0
votes
0answers
86 views

Profile2 fields in lightbox2 at registration time?

I need to user registration with the help of profile2 module. and i want to open registration form in lightbox2.
0
votes
0answers
46 views

Newly created cck fields are not being displayed in node page in drupal7

I am using drupal7 .Two days before i have created a content type and added some cck fields.Today i added two more field.But the newly added fields are not displayed in node detail page.Can you ...
3
votes
2answers
621 views

Add CCK field to custom form in Drupal 7

There was a method with CCK in Drupal 6 to attach a CCK field in our custom form, like: $field = content_fields('field_name'); // field_name is cck field (text_field,text_Area,image_field anything.) ...
0
votes
1answer
107 views

CCK field with multiple fields inside

im new on drupal and im having a problem with CCK fields. I made a custom cck field and the install schema its like this: function usig_location_field_schema($field) { return array( 'columns' ...
0
votes
0answers
72 views

CCK field not showing in JSON view

I have created a new CCK field and am trying to show it in a JSON view. It shows in the preview however when I go to the path I created for it the field won't show. I've turned off caching on views ...
0
votes
2answers
306 views

How to access cck fields in tpl file?

I am working on one already created drupal site. In themes folder it has one tpl.php file, Where theme is done to display the content. Now it is as follows print $content And all the fields of cck ...
0
votes
0answers
86 views

Default image is not displayed while creating a node

I Have created one content type, and also created one field named as "Preview Image". The type of this field is file and widget type is Image. Now Default Image I have uploaded one image which should ...
0
votes
0answers
74 views

drupal website image are not loading, showing incorrect path

I have taken backup of my drupal 6 website and ported it unix system. everything is working fine except images. All the image from website event logo is missing. i have a view with node title and node ...
0
votes
0answers
82 views

How to add sub-category filter block using faceted search module in Drupal 6

I'm new to Drupal and would like to customize the search box in Drupal as follows: I would like to modify it to contain 3 drop-down filter boxes to locate a product in my web site. The first one ...
0
votes
1answer
80 views

Drupal removing a node reference from a node

Ok, trying to process a script, both PHP and JavaScript, where I am moving a particular content type NODE from one reference to another. This is the structure: I have a PROJECT Inside each PROJECT ...
0
votes
1answer
128 views

Node reference to show only author of node

I have create two content types as Game and Video. Now in the Video I have created 1 field type as node reference that will be referring to the Game type. Now suppose I have 2 users as user1 and ...
1
vote
2answers
764 views

Simulate a click in a Google Map

I'm trying to simulate a user click on a Google Map, using API v3, after I geolocate their position when they write down their address. I used to do: google.maps.event.trigger(map, 'click', { ...
2
votes
1answer
188 views

drupal 6 allow front end users to dynamically add fields for forms in front end

I create a drupal events website. The system will have events and people can register for events. Different events will have different registration forms. Assume we can enter any number of ...
0
votes
1answer
85 views

Access to only few fields of a content type for specific user

I have created one content type 'video' in which I have many fields like url,language,locations etc. I have created 1 role, Now I just want to give permissions to that particular role so that he can ...
0
votes
1answer
72 views

can i add multiple value in field ? (please see an image)

I need to do the stock management website with 2 Content type Supplier and Product. First I add contents in Supplier content type. Then I add node reference field in Product content type and call it ...
0
votes
2answers
167 views

drupal 6 - unset previously set cck field validation error messages

How can I unset previously set cck field validation error messages? Some module is setting the form validation messages, that I want to override. In my case, it's cck_phone module. Something like ...
1
vote
0answers
111 views

Load empty values from referenced node in Views (Drupal 7)

I have a view displaying nodes of two content types. The nodes all have a cck field made with Entity Reference referencing a "parent" node. If the displayed node in the view has an empty value, the ...
2
votes
1answer
436 views

How to correct altered key|label pairs in “select list” fields (and corresponding data) after migrating to Drupal 7?

I am most of the way through migrating a Drupal 5 site through Drupal 6 to Drupal 7. The CCK Content Migrate did a great job with one exception: all fields in "select list" format have one of several ...
0
votes
0answers
18 views

How do I point to the correct module for form checking in Drupal? [closed]

Suppose I make a form using the CCK module. How do I tell it to visit the location where my module will process that form using alter, validation and submission?

1 2 3 4 5 11