Forum Replies Created
-
AuthorPosts
-
August 20th, 2018 at 09:49 in reply to: Single Post Prev/Next Navigation link not correct displayed #67456August 12th, 2018 at 19:48 in reply to: Single Post Prev/Next Navigation link not correct displayed #67248strannikParticipant
Sorry for the late reply!
Here is a test installation of my current website:
http://antoncp.bplaced.net/wp/australien/As you can see the link for the next post is in the middle of the page instead of the right side.
Any ideas how to fix it is really appreciate.
(Anima and WordPress are up to date: anima 1.2.3, wordpress 4.9.8)
strannikParticipantis there maybe a way to remove this GDPR checkbox by adding a some code to functions.php?
I tried this snippet:function remove_comment_fields( $fields ) { unset( $fields['cookies'] ); return $fields; } add_filter( 'comment_form_default_fields', 'remove_comment_fields' );
bit it didn’t work for me.
And maybe something to remove the email field as well?
I would like to remove both, the email field and GDPR checkbox, so I can avoid, that any cookies will be set (this happen only after GBPR box is checked on) and improve the privacy by not saving the email adress.
The simple removal of email field in comments.php is not working, the field still remain required and the comment will not be sent.
I tried this snippet to remove the email field:function remove_comment_fields( $fields ) { unset( $fields['email'] ); unset( $fields['cookies'] ); return $fields; } add_filter( 'comment_form_default_fields', 'remove_comment_fields' );
bit it didn’t work for me, too.
If you have some idea, I would be happy for any help.PS: I’m unig Anima
-
AuthorPosts