Is it possible to tag an image without it producing a comment? This module is perfect for my needs except I don't understand the need to make a comment while the image is already tagged. Thank you in advance.

Comments

yannickoo’s picture

any news?

natehill’s picture

subscribe

natehill’s picture

I've been working around this by styling out the comments.

In my page template I added:

 if ($node->type == 'nodetype') {
print '<div class="whatever">';
}

then in my stylesheet I added:
.whatever #comments{
display:none;
}

Not sure if this is a good approach, but it worked. Of course it means that nobody can comment on the node, but that isn't an issue for my project.

Hope it helps!

yannickoo’s picture

cool natehill,

but if I wanna add a comment?