Viewing 2 replies - 1 through 2 (of 2 total)
  • In the CSS, in section 3, scroll down to /* Genericons */.

    Then scroll down farther until you find:

    .entry-meta .author a:before {
    	content: "\f304";

    Change to:

    .entry-meta .author {
    	display: none;

    That removes the author name.

    Next go to:

    .tags-links span + a:before {
    	content: "\f302";

    Change to:

    .tags-links {
    	display: none;

    That removes the tags.

    Oh, one more thing:

    These changes may be overwritten if the theme is updated. If you don’t want to have to repeat this if the changes are overwritten, then you need to create a child theme and modify the CSS there.

    The advantage to that is you will always have the original CSS to duplicate if you make a mistake.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove tags and author’ is closed to new replies.