• Resolved lmllmn

    (@lmllmn)


    Hi,
    On the single post page, there is a line of entry-meta (date, author) below the post title, and another line of entry-meta (tags, category) at the end of the post.
    How do I remove the line of entry-meta at the end of the post, and remove the date below the title? (In other words, I would like to have only “Posted by Author’s name” below the post title.)
    Please advise. Thank you.

Viewing 6 replies - 1 through 6 (of 6 total)
  • hi.
    I have the same problem…
    I dont want any entry-data…

    but the code

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

    does not change anything…

    thanks

    Theme Author Silkalns

    (@silkalns)

    @lmllmn

    Add this code to Theme Options – Other – Custom CSS. It will get rid of tags, categories, and post date:

    .entry-content + .entry-meta,
    .entry-meta .posted-on {
        display: none;
    }

    @anoukgo

    Code you are using will hide entry-meta only on blog pages as it is clearly stated in your code.
    To remove meta on single post view as well you should use code like this:

    .entry-meta {
    	display: none;
    }
    Thread Starter lmllmn

    (@lmllmn)

    Thanks, Silkalns. I would like to have the author’s name below the post title. What additional code do I need to add?

    If possible, I would like to have the word “Posted by:” displayed before the author’s name. Is that possible?

    display: none will ‘remove’ the meta information.

    To edit what information you want to show, you will have to dig around in the API.

    This is where I’d jump from: get_the_author_meta

    Theme Author Silkalns

    (@silkalns)

    @lmllmn

    This code that I provided should leave author name in place. If not please let me know your website URL and I will look into it.

    .entry-content + .entry-meta,
    .entry-meta .posted-on {
        display: none;
    }
    Thread Starter lmllmn

    (@lmllmn)

    Thank you very much, Silkalns. I redo and it works perfectly now!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing entry-meta from single post page’ is closed to new replies.