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
Comment #1
rdeboerYeah 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.... :-)
Comment #2
dleong commentedThanks 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
Comment #3
rdeboerHi 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:
Just put a couple of slashes in front of it:
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 infunction theme_revisioning_revisions_summary($form).I believe that will have the desired effect.
Comment #4
dleong commentedThanks very much, Rik.
Comment #5
rdeboerAvailable 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.