Remove date, category etc from posts

Viewing 7 posts - 1 through 7 (of 7 total)
  • #5750
    akerblom
    Participant

    Hi, thanks for a great theme!

    I just want to know how to remove the blogg information: “June 28, 2012 | Filed under: Uncategorized” from my posts?

    If possible i’d like to have a solution for style.css and for child theme

    cheers,
    L

    #5755
    jalex11
    Participant

    @akerblom So funny, I just did this EXACT thing right before I opened the forum just now! I was trying to get rid of it just from my slider sticky posts, but it got rid of it both there and on the thumbnail posts on my blog page (using separate static home page). Anyway, here’s what I did from within the style.css file in my Child Theme folder:

    I added the following code:

    #slider .entry-meta {
    display: none;
    }

    Hope that might help!

    #6881
    Johan Sebastian
    Participant

    First of all, thanks to Daniel for a very good and intelligent design!


    @akerblom
    and @jalex11: you guided me on the way to solve the problem: how to remove date, category etc. from post.

    It’s called meta text, and this is how it’s done:
    Go to dashboard, go to editor, choose content.php, and scroll down to title= (…)
    Under this you find the following:

    <a href="” rel=”bookmark” title=””> |
    :

    Delete it, and voila! – the meta text above the post is removed πŸ™‚

    #6882
    Johan Sebastian
    Participant

    I do’nt know what’s happend? All the text transformed to short code. Not my choice. I try again, or else you can’t recognize it in the content.php

    <a href="” rel=”bookmark” title=””> |
    :

    #6883
    Johan Sebastian
    Participant

    Again?? Can Daniel help, so the text cut is set correctly in order to help other.

    #11926
    tintha
    Participant

    Thanks @jalex11 I did your suggestion on theme option > design > custom css and type
    #slider .entry-meta {
    display: none;
    }

    it make the date & categories disappear. But it only disappear on the slider while on the other post it still there. Any suggestion on how to make it disappear on the other post as well?

    Thanks

    #12239
    gunbunnysoulja
    Participant

    I did the following:

    #slider .entry-meta {
    display: none;
    }

    .teaser .entry-meta {
    display: none;
    }

    .entry-meta {
    display: none;
    }

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

You must be logged in to reply to this topic.