diff --git a/comments.php b/comments.php index b2566df..7b4ce64 100644 --- a/comments.php +++ b/comments.php @@ -32,13 +32,13 @@ if ( post_password_required() ) { if ( '1' === $sophia_after_dark_comment_count ) { printf( /* translators: 1: title. */ - esc_html__( 'One thought on “%1$s”', 'sophia-after-dark' ), + esc_html__( 'One Remark on “%1$s”', 'sophia-after-dark' ), '' . get_the_title() . '' ); } else { printf( // WPCS: XSS OK. /* translators: 1: comment count number, 2: title. */ - esc_html( _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $sophia_after_dark_comment_count, 'comments title', 'sophia-after-dark' ) ), + esc_html( _nx( '%1$s Remark on “%2$s”', '%1$s Remarks on “%2$s”', $sophia_after_dark_comment_count, 'comments title', 'sophia-after-dark' ) ), number_format_i18n( $sophia_after_dark_comment_count ), '' . get_the_title() . '' ); diff --git a/functions.php b/functions.php index 6eed9ab..a28abc4 100644 --- a/functions.php +++ b/functions.php @@ -197,3 +197,32 @@ require get_template_directory() . '/inc/metaboxes/mt-post-sidebar-meta.php'; if ( ! function_exists( 'breadcrumb_trail' ) ) { require get_template_directory() . '/inc/mt-class-breadcrumbs.php'; } +//* Remove URL field from comments +function remove_url_comments($fields) { + unset($fields['url']); + return $fields; +} +add_filter('comment_form_default_fields','remove_url_comments'); +//* Edit Cookie consent text from comments +add_filter( 'comment_form_default_fields', 'wc_comment_form_change_cookies' ); +function wc_comment_form_change_cookies( $fields ) { + $commenter = wp_get_current_commenter(); + + $consent = empty( $commenter['comment_author_email'] ) ? '' : ' checked="checked"'; + + $fields['cookies'] = ''; + return $fields; +} +//* Edit comment-notes text from comments +function crunchify_modify_text_before_comment_form($arg) { + $arg['comment_notes_before'] = '

' . __( 'All comments are manually reviewed and moderated.
Required fields are marked *' ) . '

'; + return $arg; +} +add_filter('comment_form_defaults', 'crunchify_modify_text_before_comment_form'); + +add_action( 'comment_form', 'modify_text_comment_form' ); +function modify_text_comment_form( $post_id ) { + printf( '%s', + __( 'By commenting, you consent to our Privacy Policy', 'your_text_domain' ) ); +} \ No newline at end of file diff --git a/screenshot.png b/screenshot.png index 715de79..ae72834 100644 Binary files a/screenshot.png and b/screenshot.png differ diff --git a/style.css b/style.css index fe651df..8cc2db1 100644 --- a/style.css +++ b/style.css @@ -25,7 +25,7 @@ Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/ Reset --------------------------------------------------------------*/ @import url("https://cdn.jsdelivr.net/npm/fork-awesome/css/fork-awesome.min.css"); - +@import url(https://fonts.bunny.net/css?family=josefin-sans:400,700|poppins:300,400,500,700); html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font,