Results 1 to 1 of 1

Thread: Remove website field from comments

  1. #1
    Expired Customer gonesmith's Avatar
    Join Date
    Jun 2012
    Posts
    764
    Thanks
    50
    Thanked 202 Times in 137 Posts

    Remove website field from comments

    A marketplace customer mine ask how to remove the website field from the comments section so I thought I would answer it here in case anybody else was wondering how to do it as well.

    Create a file in your plugins folder called something like remove-comment-url.php (the name isn't important as log as it is unique to you plugin folder). In that file place the following code;
    PHP Code:
    <?php
    /**
     * Plugin Name: Remove URL from Comments
     * Plugin URI: http://www.your-website.com/
     * Description: Removes website field from the comments form.
     * Version: 0.1
     * Author: Your Name
     * Author URI: http://www.your-website.com/
     * License: GPL2
     */
     
    function my_custom_comment_fields$fields ){
      if(isset(
    $fields['url']))
        unset(
    $fields['url']);
      return 
    $fields;
    }

    add_filter'comment_form_default_fields''my_custom_comment_fields' );
    Then go to your plugins page and activate the plugin. The website field in post comments should now be gone.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Jomark Remove url /website field from comments
    By le_bodyguard in forum Help Using Clipper
    Replies: 1
    Last Post: June 22nd, 2013, 10:52 AM
  2. Please comments on my Classipress website
    By japanfreeclassifieds in forum Showcase & Feedback
    Replies: 7
    Last Post: May 6th, 2012, 05:05 PM
  3. Comments and suggestions on my classipress website
    By govna in forum ClassiPress General Discussion
    Replies: 6
    Last Post: August 16th, 2011, 02:02 AM
  4. [SOLVED] remove footer powered by and header and remove comments
    By kajaja in forum ClassiPress General Discussion
    Replies: 7
    Last Post: June 3rd, 2011, 06:48 PM
  5. How to remove ad comments from blog comments widget box?
    By hafihz in forum ClassiPress General Discussion
    Replies: 2
    Last Post: May 11th, 2011, 11:14 AM