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
2 Likes