Is this possible to display tags from all taxonomies using Cumulus 5.x for tag cloud?

Comments

bjacob’s picture

Status: Active » Needs work

Tomorrow I'll port the recent D6 version to D5. I think there's a feature to allow more than one vocabulary within one cloud.

fastkill’s picture

If it is ported now , then can you tell me how to proceed.

waddles’s picture

Category: support » bug
Status: Needs work » Needs review

There is a maxlength field in the form builder for Vocabulary IDs in cumulus.module. I don't understand why, it works fine when you have multiple vocabularies. Change the value or comment that line out then list your vocabulary IDs separated by commas.

      $form['vid'] = array(
        '#type' => 'textfield',
        '#title' => t('Vocabulary ID'),
        '#default_value' => variable_get('cumulus_vid', 1),
        '#maxlength' => 30,   // not 3
        '#description' => t('The ID of the vocabulary to display.'),
      );
vince@lacknergroup.com’s picture

I discovered that the Block configuration for Cumulus doesn't like the vocabularies separated by comma-space.

Thus, "4, 6" doesn't work.

But "4,6" does work!

The "more tags" link doesn't do anything. Would like to pick 3-D word clouds based on vocabularies, found sets of nodes, etc.

Best,
Vince Lackner

kars-t’s picture

Status: Needs review » Closed (won't fix)

Sorry I won't fix this and I believe the Views version will be able to do this.