• Resolved mariosem

    (@editor)


    Hello,

    I need to exclude or remove the author’s name in single posts. How can I do that?
    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • stephencottontail

    (@stephencottontail)

    Which theme are you using? Can you post a link to your site?

    Thread Starter mariosem

    (@editor)

    Hello, as indicated in the tag, I’m using gazette by Automattic
    My theme is this macromonitor.net
    Thanks

    stephencottontail

    (@stephencottontail)

    Get a custom CSS plugin and use this code:

    .single .entry-footer .byline {
    	display: none;
    }

    Since you appear to be using a caching/optimizing plugin, you’ll likely need to temporarily disable that plugin and flush the cache before you’ll see any changes.

    Thread Starter mariosem

    (@editor)

    Thanks a lot!
    And what if I want to remove the authors name in the byline below the post title?

    stephencottontail

    (@stephencottontail)

    Try

    .group-blog .byline {
      display: none;
    }
    Thread Starter mariosem

    (@editor)

    It worked, thanks again!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Excluding/removing the author name in posts’ is closed to new replies.