Commit 59c7467a2dd2c67dea9b2c45661da1595a1ca19b

Authored by Leandro Nunes dos Santos
1 parent 632cd09c

remove all comment button from screen

plugins/require_auth_to_comment/public/hide_comment_form.js
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 $('.post-comment-button').livequery(function() { 4 $('.post-comment-button').livequery(function() {
5 $(this).show(); 5 $(this).show();
6 }); 6 });
7 - $('#page-comment-form').livequery(function() { 7 + $('.page-comment-form').livequery(function() {
8 $(this).show(); 8 $(this).show();
9 }); 9 });
10 $('.comment-footer').livequery(function() { 10 $('.comment-footer').livequery(function() {
plugins/require_auth_to_comment/public/style.css
1 -.post-comment-button, #page-comment-form, .comment-footer { 1 +.post-comment-button, .page-comment-form, .comment-footer {
2 display: none; 2 display: none;
3 } 3 }