Making Author name Invisitible

Hello! I apologize if this is the wrong place to send this discussion. I am on the headline theme and wanted to remove the author name from my articles since I am the only writer. I previously coded it on another theme but that code does not work on Headline. I would appreciate any help, thank you!

You might need to do a bit more tweaking, but try this in your code injection head to start:

<style>
  .gh-article .gh-author-image-list,
  .gh-article .gh-author-name-list {
    display: none;
  }
</style>

Amazing, thank you so much! Last question, any idea how to do the same on the homepage where it lists my articles (with my name) as well? Thank You!!!

Yep! You can use this for everything

<style>
  .gh-article .gh-author-image-list,
  .gh-article .gh-author-name-list,
  .home-template .gh-card-author,
  .home-template .gh-card-date::before {
    display: none;
  }
</style>

Hi,
could you help me to find the actual hbs file in the headline theme where I can make this change?

Thank you in advance!

Marcus

Sure, here’s the author image list:

2 Likes

Thank you very much, Vikas. That was incredibly fast.

I have one more question. With this solution, the author’s name doesn’t appear on the start page, where you can see all published articles.

Is it possible to make the author’s name appear on each article page?

You caught me at a good time :laughing:

So you want to hide the authors name on the home page, but have it visible on the post page? If so, you can use the {{is}} helper

e.g.

{{#is "post"}}
  ...
{{/is}}