• Hello all,
    i am using theme https://theme9.themeszen.com/
    and looking for a way how to remove author, category and comment from each post.

    I have searched the net and found some explanations to change code either in css style, or in specific pages.
    Yet i can’t make author, category and comment dissapear.

    Any help would be greatly appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • A link to your site would help so we could see what’s going on.

    In general, though, you look for the style rule for whatever’s displaying those links and change it so that it doesn’t display (display: none). Or at least that’s one way. You could always remove the text from the template file of course.

    Many (most?) of us use Firebug to identify the relevant style rules.

    It’s also worth mentioning that the only recommended way of modifying a theme is via a Child Theme.

    Cheers

    PAE

    Thread Starter lemmygoestothepub

    (@lemmygoestothepub)

    Hello, thanks for the quick answer. Here is my site (it is in early design stage though): https://www.uaifrs.com/

    I have tried various combinations, without success…

    Add this to the end of your (child theme’s) style sheet:

    .meta-data {
      display: none;
    }

    You may then want to do:

    .post-head h1 {
      padding-bottom: 5px;
      border-bottom: 1px solid #dedede;
    }

    This will get you the separator back.

    Cheers

    PAE

    Thread Starter lemmygoestothepub

    (@lemmygoestothepub)

    Man, you rock!
    It worked like a charm, problem solved!

    Thanks! ??

    Kudos to the developers of Firebug. Can’t take credit for that.

    ??

    PAE

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove author, category, comment, help please’ is closed to new replies.