viget/craft-disqus-notify
Composer 安装命令:
composer require viget/craft-disqus-notify
包简介
Notify authors when a comment is added via Disqus.
README 文档
README
Notify authors when a comment is added via Disqus.
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project -
Then tell Composer to load the plugin:
composer require viget/craft-disqus-notify -
In the Control Panel, go to Settings → Plugins and click the “Install” button for Disqus Notify.
Configuring Disqus Notify
-
Navigate to the plugin settings to customize the email subject and body.
-
Signup for a Disqus account and configure for your site.
Using Disqus Notify
You will utilize the Disqus onNewComment callback to make an AJAX request to the Disqus Notify plugin.
You need to pass the following pieces of data to the plugin:
- Disqus Comment Text
- Entry ID
- Entry Author ID
The URL that you need to POST to is {{ actionUrl("disqus-notify/notify/notify") }}
Here is an example of the plugin in action utilizing jQuery:
<script> var disqus_config = function () { this.page.identifier = '{{ entry.id }}'; this.callbacks.onNewComment = [function(comment) { var csrfTokenName = "{{ craft.config.get('csrfTokenName') }}"; var csrfTokenValue = "{{ craft.request.getCsrfToken }}"; var data = { comment: comment.text, entryId: {{ entry.id }}, authorId: {{ entry.author.id }} }; data[csrfTokenName] = csrfTokenValue; $.post('{{ actionUrl("disqus-notify/notify/notify") }}', data); }]; }; (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '//subdomain.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script>
Note: you will need to update your Disqus subdomain in this code snippet.
统计信息
- 总下载量: 1.13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-10-22