Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Die tekst is niet van deze plugin. Het zal van de gewone WordPress reacties zijn.

    Het zal onderdeel zijn van je thema, en staat denk ik in comments.php of anders in een callback-functie in functions.php van je thema.

    Het makkelijkste is om een CSS-regel met display:none; erop te zetten.

    Thread Starter mano222

    (@mano222)

    Oke Marcel, tnx ! voor je snelle reactie.
    a.d.h. van je antwoord ben ik verder gaan zoeken en vond het volgende, misschien dat iemand anders er wat aan heeft ( de eerste heb ik toegepast en werkt zonder issieus voor zover ik zie :

    If you want to permanently remove it, put this in your theme’s functions.php file:

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    add_filter( 'comment_form_defaults', 'remove_comment_form_allowed_tags' );
    function remove_comment_form_allowed_tags( $defaults ) {
    
    	$defaults['comment_notes_after'] = '';
    	return $defaults;
    
    }

    Wil je enkelt verstoppen dan dien je dit te doen in de style sheet :

    .form-allowed-tags{
    display:none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘de tekst onder het "reactie" blok weglaten’ is closed to new replies.