Support » Theme: evolve » Remove post from bottom

  • I do not want a post at the bottom of the homepage.
    It shows “not found” verbiage.

    How do I remove the post “not found” verbiage.

    thanks…

Viewing 7 replies - 1 through 7 (of 7 total)
  • I’m having this issue as well! I feel like I’ve attempted every suggestion I’ve found and nothing is working.

    http://www.hartwichbrothers.com.

    I don’t want posts to appear at the bottom of the homepage. It’s still displaying the Post Not Found verbiage.

    Hi Shanna,

    Thanks for writing in,

    After having a closer look into your website I figure out one way to solve your problem. But before giving you the fix I must have to warn you about this change you need to get through from this fix. For the current time you don’t have any post displayed on your website but in future when you will have posts showing don’t forget to cancel the given code before publishing a post.

    Here I also should tell you the reason why does it happen that this showing you such sentences its because you haven’t kept any post showing on your website so its showing you this message and which is a default act by WordPress to every theme. But we still can do our code to get rid of it unless we want to show posts.

    You can go to: Appearance > Theme Options > Custom CSS and put the following code:

    #primary {
      display: none;
    }

    Hope this helps!

    Thanks.

    I inserted that CSS code and it removed the post from the bottom of the homepage, but it also removed all the text on my other pages. Do I need a different code? I won’t be having blog posts, but I will need pages that I’ve created to have content. Can you help me?

    For instance, on the Custom Harvesting page, I had quite a bit of text, which is still visible on the WordPress editor page, but now isn’t displaying on the Custom Harvesting public-facing page.

    Please and thank you for your help!

    better solution would be assign an empty page for the front page, for now you can use also:

    .home #primary {
      display: none;
    }

    I used the code: .home #primary {display: none;}

    It rectified the display of text on the other pages, but brought back the “Display Not Found” verbiage to the homepage. How do I make both things happen? 🙂 I Don’t want the post display on the homepage, but I DO want the text to display on the other pages.

    Try this
    .blog #post-0{
    display: none;
    }

    Ah! That did it! Thanks so much!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove post from bottom’ is closed to new replies.