4 Images Remove the Headline from Comments |
Description: |
1.) search in templates/yourTemplates/comment_form.html:
{lang_headline} |
|
remove it or comment out with
2.) search in templates/yourTemplates/member_editcomment.html:
{lang_headline} |
|
remove it or comment out with
3.) search in details.php:
$msg .= (($msg != "") ? " " : "").$lang['headline_required'];
$error = 1;
replace:
$msg .= (($msg != "") ? " " : "").$lang['headline_required'];
$error = 0;
4.) search in member.php:
if ($comment_headline == "") {
$error = 1;
replace:
if ($comment_headline == "") {
$error = 0;
5.) search and remove the follow lines or comment out with in admin/comments.php:
Remove this
1$comment_headline = trim($HTTP_POST_VARS['comment_headline']);
This
if ($comment_headline == "") {
$error['comment_headline'] = 1;
}
And this line
show_input_row($lang['field_headline'], "comment_headline", $comment['comment_headline'], $textinput_size);
|
Keywords: |
4, Images, Remove, the, Headline, from, Comments |
Date: |
24.11.2016 03:41 |
Hits: |
555 |
Downloads: |
35 |
Rating: |
0.00 (0 Vote(s)) |
File size: |
29.4 KB |
Added by: |
Heidi |
|