Remove website blog's comment field

Discussion in 'GoldenEagle WordPress Theme' started by mightypizzaoven, Jan 28, 2014.

  1. mightypizzaoven

    mightypizzaoven Member

    Joined:
    Nov 4, 2012
    Messages:
    82
    Likes Received:
    0
    How can I remove website blog's comment field or not have it displayed

    Thanks
     
  2. mightypizzaoven

    mightypizzaoven Member

    Joined:
    Nov 4, 2012
    Messages:
    82
    Likes Received:
    0
    I have tried the following but did not work

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .comment-form-url {
    display: none;
    }
     
  3. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Same code will work. Try with important.

    Code:
    .comment-form-url {
    display: none!important;
    }
    It will work. If not then please share your website link.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  4. mightypizzaoven

    mightypizzaoven Member

    Joined:
    Nov 4, 2012
    Messages:
    82
    Likes Received:
    0
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     #url{
    display: none;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  6. mightypizzaoven

    mightypizzaoven Member

    Joined:
    Nov 4, 2012
    Messages:
    82
    Likes Received:
    0
    Thanks, That worked.
     
  7. mightypizzaoven

    mightypizzaoven Member

    Joined:
    Nov 4, 2012
    Messages:
    82
    Likes Received:
    0
    The field entry is gone but the description still showing "Website"
     
  8. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
     #respond label[for="url"] {
    display: none;
    }
    
    This will solve your issue.
     
  9. mightypizzaoven

    mightypizzaoven Member

    Joined:
    Nov 4, 2012
    Messages:
    82
    Likes Received:
    0
    It worked, Thank you.
     

Share This Page