Project:Cumulus
Version:5.x-1.1
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (won't fix)

Issue Summary

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

Comments

#1

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.

#2

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

#3

Category:support request» bug report
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.

<?php
      $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.'),
      );
?>

#4

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

#5

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.