Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #111537
    wouwonline
    Participant

    Hi, I would like to delete the information like:
    date
    author
    add a comment
    previous
    next
    field for comments
    (I want to make it look exactlu like a page)

    http://bouwbedrijfklaver.wouwonline.com/aanbouw/

    How can I change that?

    #111597
    Mahesh
    Keymaster

    @wouwonline: You could make it the page instead of post. (recommended)
    But if you prefer it to make it post but appear as page, this is possible too. You can simply hide them using CSS:

    .single-post.postid-46 .post-navigation {
    	display: none;
    }
    
    .single-post.postid-46 #comments {
    	display: none;
    }
      
      .single-post.postid-46 #main .entry-meta {
    	display: none;
    }

    For disabling comments, there is another option. Go to edit post page, then click on Screen Option at the top right of the page just beside Help. Some options will slide down. Check discussion option. Then scroll down to Discussion accordion and make sure Allow comments is unchecked. Click update.

    Regards,
    Mahesh

    #112004
    wouwonline
    Participant

    Hi Mahesh,

    I decided to buy the pro theme, i installed it now.

    And I want to change the blog posts on the homepage into pages, how can I do that? Now automatically the posts are shown. I disabled the featured content, because I want to show the texts below each other.
    You can check it on: http://bouwbedrijfklaver.wouwonline.com

    #112007
    wouwonline
    Participant

    If it has to be blog posts (and pages are not possible), how can I delete the blog information on the homepage? You already gave me the code for the blog pages and it works:)
    but i also want to delete the information on the homepage. I already got the following code from you for another pro theme, but that code is not working for this theme: .blog #content div.entry-meta {
    display: none;
    }

    It’s about this info: maart 8, 2017Leave a commentEdit

    And I’m also missing the font size options in the Pro theme – customizer. What is the code to change it in CSS? THanks!

    #112009
    Mahesh
    Keymaster

    @wouwonline: Go to Dashboard=> Appearance=> Customize=> Static Front Page and select A static page in Front Page displays option. Then select the page in Front page dropdown you want to display as Homepage.

    Regards,
    Mahesh

    #112025
    wouwonline
    Participant

    Hi Mahesh,

    I don’t want to use a static frontpage, but i want to show the 3 pages below each other, instead of 3 posts, but I think that’s not possible. So I would like to delete the post information from the posts on the homepage (maart 8, 2017Leave a commentEdit)

    #112086
    Mahesh
    Keymaster

    @wouwonline: You can hide it using CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .home #main .hentry .entry-meta {
        display: none;
    }

    Regards,
    Mahesh

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Delete information from blog page’ is closed to new replies.