This is a great module,

But I can't find a way to restict the pages of my site where the chat appears. A section on my site has webcams streaming and I would like people to chat about these, how do I restrict chatters just to these pages? I don't want the chat on any other pages.

Thanks

Comments

Chelonia’s picture

Status: Active » Fixed

Fixed now. Numbers 1111, 2222, 3333 relate to nodes the webcams appear on.

function webcam_chat_page_alter(&$page) {
  if (arg(0) != 'node' && (arg(1) != '1111' || arg(1) != '2222' || arg(1) != '3333')) {
    unset($page['page_bottom']['devel']);
  } 
}

Status: Fixed » Closed (fixed)

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