email notification for comments with G3?

tp
tp's picture

Joined: 2003-03-26
Posts: 104
Posted: Tue, 2013-09-03 16:02

I am guessing the answer to this question is "no" but just making sure. The only notification module I could find is for when photos are added. Any other way to make this happen? (I'm running 3.09)

thanks,
Todd

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2013-09-03 18:02

I'm sure the notifications module sends notifications to users when changes are made to watched albums.
I think that comments added and comments that have changed their state (published / not published) are in the list of things that you get notified on.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
tp
tp's picture

Joined: 2003-03-26
Posts: 104
Posted: Tue, 2013-09-03 22:59

Are albums watched by default? I can't find anywhere to designate albums watched or not.

There is a 'modules/notification/views/comment_published.html.php' so maybe my install is broken. I did notice that in this php file it has email/url:

<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
  <head>
    <title><?= html::clean($subject) ?> </title>
  </head>
  <body>
    <h2><?= html::clean($subject) ?></h2>
    <table>
      <tr>
        <td><?= t("Comment:") ?></td>
  <td><?= nl2br(html::purify($comment->text)) ?></td>
      </tr>
      <tr>
        <td><?= t("Author name:") ?></td>
        <td><?= html::clean($comment->author_name()) ?></td>
      </tr>
      <tr>
        <td><?= t("Author email:") ?></td>
        <td><?= html::clean($comment->author_email()) ?></td>
      </tr>
      <tr>
        <td><?= t("Author URL:") ?></td>
        <td><?= html::clean($comment->author_url()) ?></td>
      </tr>
      <tr>
        <td><?= t("Url:") ?></td>
        <td>
          <a href="<?= $comment->item()->abs_url() ?>#comments">
            <?= $comment->item()->abs_url() ?>#comments
          </a>
        </td>
      </tr>
    </table>
  </body>
</html>

I have edited my comments module so the only thing that is required is name and comment.. Could this have broken notifications since it's set to report these two other fields (email and url)?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2013-09-03 23:13
Quote:
Are albums watched by default?

No. The user has to watch the albums they want to get notifications.
See image attached.

I don't know if you watch the root album all sub albums get watched or not.

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
tp
tp's picture

Joined: 2003-03-26
Posts: 104
Posted: Wed, 2013-09-04 00:05

geez don't I feel brilliant! I looked in that menu before but obviously not closely enough. Watching the root album does work for everything too (which I like). Thanks!