Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    Is there a way to modify Plogger to allow users to comment on an album as a whole (all the photos in it) rather than individual photos?

    Also, is it possible to remove one or more of the comment required fields?
    •  
      CommentAuthorkent
    • CommentTimeDec 2nd 2007 edited
     
    wish i could help you but iv never allow comments .. turned off ever since istarted using plogger ..

    in theme/picture.php there is..

    plogger_display_comments();

    that includes.. THEME_DIR . '/comments.php ... to .. plogger_picture_has_comments .. to .. available_comments .. and i found:

    // lets load up the comments for the current picture here as well
    $query = "SELECT *,UNIX_TIMESTAMP(`date`) AS `unix_date`
    FROM `".TABLE_PREFIX."comments`
    WHERE `parent_id`=".intval($id)."
    AND `approved`=1";

    parent_id must be picture id .. so .. maybe move plogger_display_comments(); to theme/album.php ?

    maybe change < input type="hidden" name="parent" value="'.plogger_get_picture_id().'" /> in theme/comments.php to album id?

    I dont know .. im just thinking loud ;)

    Hope i gave you some light..