Hi Rik,

Not sure if this is just specific to me or others have the same configuration, but when viewing the Revisions list for a specific node and the Accessible Content, I have a column labeled as Term that lists the vocabulary/taxonomy terms associated with that node. Is there a way to remove that column from the view? I've tried to find reference to this here but haven't been successful nor have I been ale to find an administrative setting that will allow me to customize which columns are displayed.

Apologies in advance if this turns out to be a relatively simple solution that I've overlooked.

Thanks,
Dennis

Comments

rdeboer’s picture

Category: task » feature

Yeah that column appears if you have taxonomy terms defined.
You can't suppress that at the moment....
I guess this means you're requesting a feature.... to switch it off.... :-)

dleong’s picture

Thanks for the timely reply - I guess I am requesting that feature (or beyond that, one that allows customization of the columns). In the meantime, I can't even remove it by making a change to 'revisions-summary.tpl.php' or one of the csss files in the Revisioning module (not to say that I know what changes to make....)

Dennis

rdeboer’s picture

Hi Dennis,
If you're happy with a quick and dirty hack, then until I've made it configurable, I suggest you proceeds like this. In the module_grants folder, file module_grants_theme.inc, find the function theme_nodes_summary($nodes)
There's a line in there that reads:

    $show_taxonomy_terms = module_exists('taxonomy'); 

Just put a couple of slashes in front of it:

// $show_taxonomy_terms = module_exists('taxonomy'); 

That should do the trick.
It's exactly the same for the node revision summary. To suppress the "Term" column, the above line needs to be commented out in two places in file revisionining_theme.inc, namely in function revisioning_revisions_summary(...) and in function theme_revisioning_revisions_summary($form).
I believe that will have the desired effect.

dleong’s picture

Thanks very much, Rik.

rdeboer’s picture

Assigned: Unassigned » rdeboer
Status: Active » Fixed

Available in the latest version (16-Dec-09) of Module Grants. You need to upgrade Revisioning as well.
Administer >> Site configuration >> Module Grants.
It's the third tick box on the page.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.