strannik

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • strannik
    Participant

    @Zed:
    Thank you :-)!

    strannik
    Participant

    @Zed

    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)

    in reply to: GDPR -WordPress Comments Privacy Checkbox #65661
    strannik
    Participant

    @Zed:

    thank you! It works :-).

    in reply to: GDPR -WordPress Comments Privacy Checkbox #65359
    strannik
    Participant

    @Zed

    is 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

Viewing 4 posts - 1 through 4 (of 4 total)