Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #11579

    I am working on a child theme of Simple Catch. I want most of my pages (created from the default template) to include NexGEN photo galleries, but no LEAVE A REPLY form. I would like to completely remove the <div id=”respond”> from the page. For the life of me, I can’t figure out where the code resides that is placing this on the page.
    Thanks!

    #11595
    Sakin
    Keymaster

    @wendell.laurent: If you are working on child theme and want to remove comment from the pages only. Then you can copy comments.php and just add following code, just above the text // Standard WordPress comments security
    if ( is_page() ) { return; }

    #11598
    wlaurent2020
    Member

    Beautiful! Such an easy fix. Thank you so much!

    #11662

    A follow-up question: I don’t want the page titles to appear at the top of every page either. I’d like to be able to customize each page. I have found the code in content.php which I believe adds the title, but none of the code I write lets me delete it.

    (Are more of these attributes customizable in the pro version? I wanted to make sure I liked the theme before I purchased it.)

    #11679
    Sakin
    Keymaster

    @wendell.laurent: You can ready about the additional feature in Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/

    You can just hide the page title by adding custom CSS in “Appearance => Theme Options => Custom CSS”.

    If you want me to provide you the css code then send me your site URL.

    #11688

    Thank you for your reply. I’m currently working on the site locally, so there’s no URL to send you yet, unfortunately. (The site my design portfolio and I want to wait until it’s finished to upload it.)

    It’s going to be a very simply website, but I will buy the pro version to take advantage of the resizing for different devices, and the choices of different colors.

    Is the code to hide page titles site-dependent?

    #11703
    Sakin
    Keymaster

    @wendell.laurent: Can you try adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page .entry-title { display: none; }

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘How to remove from pages’ is closed to new replies.