How can I disable watcher module for some specific pages? The link is showing in every page but I would like to disabke it for few pages.

Comments

solipsist’s picture

Watcher works with nodes and doesn't care where you display those nodes. If your theme prints out the page's path as a class in the body tag, you can use CSS to hide the link on specific paths.

Yuki’s picture

Whats the css code to hide the link? I ma using blumarine and watcher is coming below node mean below page, I want to hide it.

solipsist’s picture

I don't think bluemarine theme adds meaningful classes to the body tag. You have to use a Zen based theme or edit template.php for this to work. With Zen you add this CSS to your theme:

body.front .watcher_node {
  display: none;
}
solipsist’s picture

Status: Active » Closed (fixed)