WordPress and buddypress programming

remove the Website field from comments

Viewing 0 reply threads
  • Author
    Posts
    • #3923
      michael mc
      Keymaster
      @michael

      Editing the WordPress Files to remove the Website field from comments

      Open functions.php file and add code.

      add_filter('comment_form_default_fields', 'website_remove');
      function website_remove($fields)
      {
         if(isset($fields['url']))
         unset($fields['url']);
         return $fields;
      }
Viewing 0 reply threads
  • You must be logged in to reply to this topic.