• hello,
    Im almost done creating this website (https://www.lifevision.dk) using the theme called “Creative Portfolio Responsive WordPress” by Dessign.net

    Although I can’t seem to remove the “comments are closed” / “der er lukket for kommentarer” (in danish)

    I have searched for a comments.php page in the editor, but can’t find it anywhere. Furthermore, I cant find any place in any of the files available, where it says something like:
    <?php else : // comments are closed ?>
    <!– If comments are closed. –>
    <div class=”art-Post”>

    Can anyone help me find the php line to delete to remove the comment text on the website?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Because you are using a purchased theme, we do not have access to the code to find the correct lines. You should contact your theme supplier.

    Show sourcecode of your website, find the element where the text is represented. In this case, I found:

    <p class="nocomments">Der er lukket for kommentarer.</p>

    Post this somewhere in your Site.css

    .nocomments{
    display: none;
    }

    If that doesn’t work, try to find the element right after, and clear it that way.

    .pagenextback:before{
    display: none;
    content: ' ';
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove comments are closed text from Creative Portfolio Responsive Theme’ is closed to new replies.