How to get rid of "leave comment"

  • kikkizen

    #87

    Hi man… Im trying to combine my posts with a IP Board forum…to do so i want that when i press “leave comment” to go at the forum page where i want…no idea if this is possible and if would be nice if you explain how it works.

    So if i cant make that.. i would like to get rid of the “leave comment” footer thingy at each post..without braking the hole theme… thx

    wowcast

    #11197

    ps i tried to disallow “leave comments” but ist still showing but cant post

    Admin

    Syahir Hakim

    #11198

    It would be quite difficult to implement a function where the button links automatically to the forum on the IP-Board, especially since WordPress and IP-Board does not generate the same page or post ID. To do that, you would have to implement a function where you can specify the link to the appropriate IP-Board page for each and every post.

    You can achieve that using Custom Field and hooking up your function to one of the theme’s hook in the leave comment area, but as I said, it’s kinda complicated if you’re not familiar with PHP.

    If you would just want to remove the Leave Comment, just use a CSS declaration of display:none on that element.

    wowcast

    #11199

    done..thx love

    alisoncerier

    #11200

    Hi. Question about the last line above — to remove Leave Comment, use CSS declaration of display: none on that element. Would you please tell me where I’d do this?

    Thanks!

    Admin

    Syahir Hakim

    #11201

    If you’re using a child theme, it goes into your child theme’s style.css file. Otherwise, it goes to the bottom of the theme’s style.css file.

    Here’s the code that you need to add:

    #comments, #respond{
    display:none;
    }

    alisoncerier

    #11202

    Worked like a charm. Thanks so much!

Viewing 7 posts - 1 through 7 (of 7 total)

  • You must be logged in to reply to this topic.