как и перенаправления нет на сайте
add_action( 'comment_form_top', 'h_comment_form_top', 20 );
function h_comment_form_top(){
echo '<div class="row"><div class="cell-6">';
}
add_action( 'comment_form', 'h_comment_form', 20 );
function h_comment_form(){
echo '</div><!-- .col-6 --></div><!-- .row -->';
}
add_filter( 'comment_form_field_comment', 'h_comment_form_field_comment', 20 );
function h_comment_form_field_comment( $comment ){
$comment = '
<p class="comment-form-comment">
<textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required=""
placeholder="Текст Вашего отзыва..."></textarea>
</p>
</div> <!-- .col-6 -->
<div class="col-6">';
return $comment;
}
add_filter( 'comment_form_defaults', 'h_comment_form_defaults', 20 );
function h_comment_form_defaults( $defaults ){
$defaults['comment_notes_before'] = '';
$defaults['title_reply'] = '';
$defaults['title_reply_before'] = '';
$defaults['title_reply_after'] = '';
$defaults['label_submit'] = 'Отправить';
return $defaults;
}
add_filter( 'comment_form_field_author', 'h_comment_form_field_author', 20 );
function h_comment_form_field_author( $author ){
$author = '
<p class="comment-form-author">
<input id="author" name="author" type="text" value="" size="30" maxlength="245" placeholder="ФИО" required />
</p>';
return $author;
}
add_filter( 'comment_form_field_email', 'h_comment_form_field_email', 20 );
function h_comment_form_field_email( $email ){
$email = '
<p class="comment-form-email">
<input id="email" name="email" type="email" value="" size="30" maxlength="100" placeholder="Email" required />
</p>';
return $email;
}
add_filter( 'comment_form_field_url', 'h_comment_form_field_url', 20 );
function h_comment_form_field_url( $url ){
$url = '
<p class="comment-form-url">
<input id="url" name="url" type="url" value="" size="30" maxlength="200" placeholder="Сайт" />
</p>';
return $url;
}
add_filter( 'comment_form_field_cookies', 'h_comment_form_field_cookies', 20 );
function h_comment_form_field_cookies( $cookies ){
$cookies = '
<p class="comment-form-personal-information">
Нажимая кнопку "Отправить", я даю согласие на
обработку персональных данных в соответствии
с политикой в области обработки и защиты
персональных данных.
</p>';
return $cookies;
}
шаблон как был оставил, а лицензию на скачанный шаблон внедрил