Hide author in Source theme?

Can I hide the author on the posts in the Source theme being on the lowest tier on Ghost Pro? How do I do that? A code snippet of some sort?

Yes, you can hide it by adding the following in your code injection:

<style>.post-template .gh-article-meta { display: none; }</style>

This will have the author image, name but also the date and reading time.

If you only want to hide the author image and name and keep the date + reading time:

<style>
.post-template .gh-article-meta .gh-article-author-image, 
.post-template .gh-article-meta .gh-article-author-name { 
  display: none; 
}
</style>
1 Like

Perfect, thanks!

ps great to be back on Ghost and a helpful community like this :smiley:

2 Likes

That doesn’t worked for me(

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

Please link your site if you’d like help trouble-shooting the problem.