Nova Docs
PreviewAboutStyle GuideBuy Now
  • Getting Started
    • Introduction
  • Fundamentals
    • Installation
    • Customization
    • Add Menu Items
    • Enabling Comments
    • Editing Theme
  • Code-level Changes
    • Removing Animations
    • Bold Heading
    • Removing Post Meta
Powered by GitBook
On this page

Was this helpful?

  1. Code-level Changes

Removing Post Meta

PreviousBold Heading

Last updated 2 years ago

Was this helpful?

Requires changing theme code. See Editing Theme for more info.

To remove post meta, open to post.hbs and search and the following:

<div class="meta">
    <div class="app">
        {{#foreach authors}}
            {{#if profile_image}}
                <div class="post-item-author">
                    <a href="/author/{{slug}}">
                        <img class="gh-author-image-post" src="{{profile_image}}" alt="{{name}}" />
                    </a>
                </div>
            {{/if}}
        {{/foreach}}
    </div>
    <div class="more-info">
        {{authors separator=" and " prefix="Posted by "}}
        <br> <time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time> — {{reading_time}}
    </div>
</div>

Applying changes

Once you’re done making these changes, visit to apply changes to your Ghost blog.

Applying changes