/home/techb158/l2hypotheques.com/wp-content/themes/pylon/inc
NameSizeModeActions
header/-0755rm
merlin/-0755rm
metabox-and-options/-0755rm
plugins/-0755rm
class-tgm-plugin-activation.php1228780644editdlrm
comment-template.php25700644editdlrm
comments-list.php24610644editdlrm
css-and-js.php79070644editdlrm
custom-header.php19520644editdlrm
customizer.php17890644editdlrm
demo-wizard.php61430644editdlrm
footer-widget.php27360644editdlrm
inline-style.php132630644editdlrm
merlin-config.php22000644editdlrm
mobile-menu.php00644editdlrm
nav-menu-walker.php12640644editdlrm
plugins-activation.php31080644editdlrm
template-functions.php39090644editdlrm
template-tags.php37130644editdlrm
widget-area-init.php36690644editdlrm
woocommerce.php102470644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-content/themes/pylon/inc/comment-template.php (2570B)
'; // Email field $pylon_fields['email'] = '
'; // Website field $pylon_fields['url'] = '
'; return $pylon_fields; } add_filter('comment_form_default_fields', 'pylon_comment_form'); // Customize the comment form structure function pylon_comment_default_form($default_form) { // Comment text area $default_form['comment_field'] = '
'; // Submit button $default_form['submit_button'] = '
'; // Comment notes $default_form['comment_notes_before'] = '

' . esc_html__('Your email address will not be published. ', 'pylon') . '

'; // Title for the comment form $default_form['title_reply'] = esc_html__('Leave A Reply', 'pylon'); $default_form['title_reply_before'] = '

'; $default_form['title_reply_after'] = '

'; return $default_form; } add_filter('comment_form_defaults', 'pylon_comment_default_form'); // Move comment field to the bottom function pylon_move_comment_field_to_bottom($fields) { $comment_field = $fields['comment']; unset($fields['comment']); $fields['comment'] = $comment_field; return $fields; } add_filter('comment_form_fields', 'pylon_move_comment_field_to_bottom');