Drupal is up and running but how do I ...?

Views module - Table of categories with links

Is it possible to create a view (a table) so it shows all the categories under a container.
I want to be able to click a category (Link) so it shows all the nodes that are tagged with this category.
I know its possible with nodes...so because categories in the category module are nodes there must be a way to do it.
Yet...To no avail...

Where am I going wrong?

I'm trying to simply create a new menu item ("Add Gallery") in the Create Content area (page and in the menu). To do this, I thought I could create a module which simple makes the items visible and then calls a drupal_goto function. So, I've got this:

Image gallery per user - dirty hack

I want all images uploaded by a user stored in a personal gallery.

Since i didn't find a suitable solution, i added a gallery for every user (username = gallery name) and changed the taxonomy module:

function taxonomy_form($vid, $value = 0, $help = NULL, $name = 'taxonomy') {
  $vocabulary = taxonomy_get_vocabulary($vid);
  $help = ($help) ? $help : $vocabulary->help;
  if ($vocabulary->required) {
    $blank = 0;
  }
  else {
    $blank = '<'. t('none') .'>';
  }
 
  //custom
  global $user;
  if ($user->uid!=1 && $vid==3) {                           //3 = image gallery Vocabulary ID(vid)
    $res = db_query('SELECT * FROM {term_data} WHERE name = "%s"', $user->name);
    $term_data = db_fetch_object($res);
           
    return array('#type' => 'select',
      '#title' => $title,
      '#default_value' => $value,
      '#options' => array($term_data->tid => $user->name),
      '#description' => $description,
      '#multiple' => $multiple,
      '#size' => $multiple ? min(9, count($options)) : 0,
      '#weight' => -15,
      '#theme' => 'taxonomy_term_select',
            );
  }
  //custom
 
  return _taxonomy_term_select(check_plain($vocabulary->name), $name, $value, $vid, $help, intval($vocabulary->multiple), $blank);
}

This causes only the gallery with the same name as current user is beeing showed to all users except admin for image upload.

Taxonomy/Heirarchy - desperately need help

Hi everyone, I'm brand new to drupal and am having some issues getting a grip on it. I simply cannot get any sort of breadcrumb/hierarchy system to work, when my site is so dirt simple it should work find.

I'm making a local music website with concert info and reviews and such. I made a VERY simple vocab system (until I get it to work properly). The vocab term is "Content", under which i have Local>WasDC, Local>NYC, Reviews>Albums, and Reviews>Concerts.

Node that References Other Nodes

I am looking for a module that allows me to create a node, and specify that this node contains a variable number of references to other nodes of a specific type. Basically a listing.

EX: NodeA is allowed to reference/list as many NodeB's as needed, but only allowed to reference nodes of type NodeB. NodeB contains title/description and some other custom fields (probably defined in CCK.) Can NodeA display this information in a table/grid format?

Problem with thumbnails alignment in home page

Hi,

As you can see here http://caminal.org/druno/ in the second post,
The next post aligns AROUND the previous post's thumbnail instead of below it.
It happens on every post with an image.
I've searched for a solution but haven't found one. Could anybody help me solve it?
Thanks,
Zury.

Pages

Subscribe with RSS Subscribe to RSS - Post installation