Tagged: comment box
Hi dhuet!
Yes, in includes/comments.php search for this code:
if(!isset($indent)) $indent = "";
if(comments_open()){
/*
echo "<div class='comment_meta_container alpha '.avia_layout('meta',false,false).' unit'>";
echo "</div>";
*/
echo "<div class='comment_container ".avia_layout_class('entry',false)." units $indent'>";
echo "<h3 class='miniheading'>".__('Leave a Reply','avia_framework')."</h3>";
echo "<span class='minitext'>".__('Want to join the discussion? <br/>Feel free to contribute!','avia_framework')."</span>";
comment_form();
echo "</div>";
}
else if(get_comments_number())
{
/* If there are no comments and comments are closed,
* let's leave a little note, shall we?
*/
echo "<h3 class='$indent commentsclosed'>".__( 'Comments are closed.', 'avia_framework' )."</h3>";
}
and move it to the top of the file (insert it before the comments loop).
Best regards,
Peter
Thank you so much.
On more question where would I find the php file to hide this message,
You may use these HTML tags and attributes:
<abbr title=””> <acronym title=””> <b>
<cite>
<i> <q cite=""> <strike>Thanks you,
Didier
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.form-allowed-tags { display: none!important; }
Cheers!
Yigit
Thank you!