Drupal 7: The image-field (core) has an optional title-field. How to show the content of this title-field in a view?

Hi!

I have a problem with the image field (drupal 7 core) and its optional title field: How can the content of the image->title field be shown in a view?

On the image–field – settings I have activated >Enable Title Field<. I use the image->title field to save additional information (what can be seen on the image, what is the source) for each uploaded image.

This part works great. The problem is to show the content of the image->title field in a view. I can find no way to print out the content of a image->title field.

Categorize Contents on Drupal 7??

Hi, i need to know how can i categorize content with taxonomy module on drupal 7. On drupal 6 it is easy, only check the type of content that you want to include, when you create the taxonomy term. But on drupal 7 i can´t find how to do that, please help me.

Is there a D7 equivalent to the Event module

One of the most useful modules for the community sites that I have developed has been the Event module which allows the user to post notices for upcoming meetings to their site and the notification is automatically removed once the meeting has passed. I've looked for a similar module but so far without luck. Does anyone know of a suitable module?

File Download Error (PDOException: SQLSTATE[42883])

Have a basic page content type with a file upload facility from which I (as admin) can add files to the page content to generate download links for registered users. However, while the files seem to upload fine into a private directory (outside the web root) and generate a links on the page okay, when I click the page link to the file I get the following error:

PDOException: SQLSTATE[42883]: Undefined function: 7 ERROR: operator does not exist: integer = text LINE 1: ... f INNER JOIN webform_submitted_data wsd ON f.fid = wsd.data... ^ HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.: SELECT ws.uid, f.* FROM {file_managed} f INNER JOIN {webform_submitted_data} wsd ON f.fid = wsd.data INNER JOIN {webform_submissions} ws ON ws.sid = wsd.sid WHERE f.uri = :uri; Array ( [uri] => private://Program_RC1_0.exe ) in webform_file_download() (line 807 of /var/www/drupal-7.0/sites/all/modules/webform/webform.module).

The workflow to this page is through a webform which redirects to the download page on successful completion of the form. As a note when I upload the file Program_RC1.exe to create the download link from it gets changed to Program_RC1_0.exe each time. I don't have this file renaming issue with other files but I have the same download error message.

How to pass parameters of a node to an Action using Rules?

Hi everybody,
I am pretty new to Drupal and about to get involved deeper. And now I encounter this problem using the Rules-module.

First I have written this module, that creates a new node-type and adds some fields to it:

<?php
function roombooking_install() {

$t = get_t();

// Add body
node_types_rebuild();
$types = node_type_get_types();
node_add_body_field($types['roomtype'], $t('Description'));

$body_instance = field_info_instance('node','body','roomtype');

$body_instance['display']['full'] = array(
'label' => 'hidden',
'type' => 'text_summary_or_trimmed',
);

field_update_instance($body_instance);

foreach(_roomtype_installed_fields() as $field) {
//Create fields
field_create_field($field);
}

foreach(_roomtype_installed_instances() as $instance) {
$instance['entity_type'] = 'node';
$instance['bundle'] = 'roomtype';
//Create instances and add Roomtype
field_create_instance($instance);
}

}

/*
* Array of fields for roomtype
*/
function _roomtype_installed_fields() {

$t = get_t();

return array(
'roomtype_image' => array(
'field_name' => 'roomtype_image',
'type' => 'image',
'cardinality' => 1,
),

Inbound email integration?

Am I looking at this particular issue all wrong? Is is soooo basic of a question, that I must be completely off base?

I would like to setup a generic email address for the domain that would then end up as a posting of some sort in the Drupal website setup for that area of interest.

Example. Drupal site setup for widget discussions. Want emails sent to widgets@domain.com to create entry (blog, forum post, support ticket, etc. to be determined) in Drupal.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x