Grav Comments Plugin Fork : Akismet support added, can disable comments but leaving visible, and draws gravatars. http://getgrav.org
Go to file
Andy Miller 884049ff22 Merge branch 'release/1.0.0' 2015-10-21 16:34:32 -06:00
admin Show the recently commented pages 2015-10-18 11:12:28 +02:00
templates/partials Add enable_on_routes and disable_on_routes config options 2015-10-15 18:04:02 +02:00
.gitignore First commit 2015-09-13 20:32:44 +02:00
CHANGELOG.md version update 2015-10-21 16:34:21 -06:00
README.md Improve plugin readme. Uncomment config options for captcha and email 2015-10-16 17:17:44 +02:00
blueprints.yaml version update 2015-10-21 16:34:21 -06:00
comments.php Start processing for comments only if comments are enabled on that route 2015-10-19 18:14:15 +02:00
comments.yaml Improve plugin readme. Uncomment config options for captcha and email 2015-10-16 17:17:44 +02:00
languages.yaml Works with the Form plugin 2015-10-13 23:39:13 +02:00

README.md

Grav Comments Plugin

The Comments Plugin for Grav adds the ability to add comments to pages, and moderate them.

| IMPORTANT!!! This plugin is currently in development as is to be considered a beta release. As such, use this in a production environment at your own risk!. More features will be added in the future.

Installation

The Comments plugin is easy to install with GPM.

$ bin/gpm install comments

Or clone from GitHub and put in the user/plugins/comments folder.

Usage

Edit the

Add {% include 'partials/comments.html.twig' with {'page': page} %} to the template file where you want to add comments.

For example, in Antimatter, in templates/item.html.twig:

{% embed 'partials/base.html.twig' %}

    {% block content %}
        {% if config.plugins.breadcrumbs.enabled %}
            {% include 'partials/breadcrumbs.html.twig' %}
        {% endif %}

        <div class="blog-content-item grid pure-g-r">
            <div id="item" class="block pure-u-2-3">
                {% include 'partials/blog_item.html.twig' with {'blog':page.parent, 'truncate':false} %}
            </div>
            <div id="sidebar" class="block size-1-3 pure-u-1-3">
                {% include 'partials/sidebar.html.twig' with {'blog':page.parent} %}
            </div>
        </div>

        {% include 'partials/comments.html.twig' with {'page': page} %}
    {% endblock %}

{% endembed %}

The comment form will appear on the blog post items matching the enabled routes.

To set the enabled routes, create a user/config/plugins/comments.yaml file, copy in it the contents of user/plugins/comments/comments.yaml and edit the enable_on_routes and disable_on_routes options according to your needs.

Enabling Recaptcha

The plugin comes with Recaptcha integration. To make it work, add your own Recaptcha site and secret keys the the plugin yaml config file.

Where are the comments stored?

In the user/data/comments folder. They're organized by page route, so every page with a comment has a corresponding file. This enabled a quick load of all the page comments.

Visualize comments

When the plugin is installed and enabled, the Comments menu will appear in the Admin Plugin. From there you can see all the comments made in the last 7 days.

Further improvements to the comments visualization will be added in the next releases.

Email notifications

The plugin interacts with the Email plugin to send emails upon receiving a comment. Configure the Email plugin correctly, setting its "Email from" and "Email to" email addresses.

Things still missing

  • Allow to delete comments from the Admin Plugin
  • Ability to see all comments of a page in the Admin Plugin
  • Ability to reply to a comment from the Admin Plugin
  • Auto-fill the comment form when a user is logged in