markguyver
Forum Replies Created
-
Forum: Plugins
In reply to: [Disqus Comment System] Please add-> wp_notify_postauthor($comment_id)One problem with the solution provided at the link is that it won’t work for WordPress VIP customers; since VIP provides the plugin as part of their plugins repo, it cannot be modified. I happen to be developing for a site that is hosted by WordPress VIP.
Also, the duplication of emails makes sense if you are an author on your blog as well as the owner of the Disqus account that is being used. However, if you have multiple authors on your site, the vast majority of people writing will not receive notifications as only the owner of the Disqus account receives those.
Forum: Plugins
In reply to: [Disqus Comment System] Please add-> wp_notify_postauthor($comment_id)I’m interested to know how to resolve this issue also.
I’m against the solution provided at the following link because it requires modification of the Disqus plug-in code which interferes with updating the Disqus plug-in.
http://wpdailybits.com/blog/notify-post-author-for-new-comment-disqus/45
I found another solution on GitHub that is not ideal either (linked below). The problem is that it requires exposing an endpoint (the php/sendnotification.php file) to receive a callback whenever a comment is posted.
https://github.com/disqus/DISQUS-API-Recipes/tree/master/notifications
Ideally the Disqus plug-in should be able to check the WordPress comment notification setting and then use the
wp_notify_postauthor( $comment_id );function if notifications are enabled.