Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #202291

    REF: http://gyazo.com/146fa279552c6a1887c5da41f6ac02ff

    I’d like to remove the “website” textbox and text, as well as the HTML related stuff after the main text box.
    Is there code I can change here, or will I have to alter single.php for this?
    I do also want to change the actual “Post Comment” box colour, however I think that is just a styling thing that can be done via the styling options / editor.

    I’m already going to alter single.php to change the “Blog – Latest News” to state the correct title, so any other input would be great.

    My apologies for so many different support topics, I’ve been trying to learn as I go and you’ve been extremely helpful!

    #202292

    Just to add, as it pertains to the same page / blog

    Is there a way to add more spacing to the top of both the main blog post area, and the sidebar

    Ref: http://gyazo.com/d9c9e1f6f5f4dc824924fbcbe980f54b
    I’d like to add say 30px of spacing between the “Privacy on Mind” title and the actual “Blog – Latest News” div.
    I’d also like to have the sidebar spaced the same if possible.

    #202405

    Hey!

    1.) Use this to remove the allowed html tags note:

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

    2.) Change the button color using this:

    .main_color #submit, .main_color input[type='submit'] {
    background: red;
    }

    3.) Use this to increase the top padding:

    .content, .sidebar {
    padding-top: 100px;
    }

    Best regards,
    Ismael

    #202693

    Hi Ismael,

    These all worked perfectly!

    Is there any way to remove the “WEBSITE” section in the comment area, only showing the name / email / comment?
    REF: http://gyazo.com/8dac11c878e6d3c2361b3aaa310d56fb

    Another question, is it possible to remove the Next & Previous blog postings from showing up as options on the Left and Right side of the webpage?
    REF: http://gyazo.com/018a4ba1d1789cf84f6cfcc0beb5245f

    All of the code you’ve given me thus far has worked perfectly!!

    Thank you so much!

    #203250

    Hey!

    1) There’s a plugin for this: http://wordpress.org/plugins/disable-hide-comment-url/ – I’m not sure if it’s compatible with wp3.8 though.

    2) Add following csscodeinto the quick css field

    
    .single-post .avia-post-nav{ display: none !important; }
    

    Regards,
    Peter

    #203338

    Thanks for this code! Works perfectly and solved my questions.

    Checking the Plugin now, not too sure if it’ll work.

    Thanks!!!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove Website / HTML code from the "Comment" section of Blog Post’ is closed to new replies.