Viewing 3 replies - 1 through 3 (of 3 total)
  • it’s WordPress, rather than twenty ten specific.

    Try adding a filter to the themes function file:

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

    (untested)

    Alternatively you could amend CSS to just hide things:
    .form-allowed-tags{display:none;}

    Thread Starter alanfolkard

    (@alanfolkard)

    Thanks, can I amend CSS do through the editor built in to 3.1? Is it just a case of finding the .form-allowed-tags in the style.css file section and then adding display:none; by typing into the editor?

    Yes, add it to the bottom, or search the page to see if any style is already being applied and amend that.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can I remove the notes below the comment box in twenty ten theme’ is closed to new replies.