By default author information is displayed above the content.
For article author information you can use the Metadata setting in the Article page elements setting group to switch between displaying just the article date (before or after the article content) or the article author and date.
Th built-in styles in all of our themes fully support user badges.
In sidebar
You can use author information patterns by copying and pasting the code into the position you’d like them to appear in any article, comment, post or request.
Using on the Article page
By default the Article page has three built-in author information and metadata styles controlled by the Metadata setting in the Article page elements setting group:
- Just the date at the start of the article
- The author information and date at the start of the article
- Just the date at the end of the article
When using a style that appears at the start of an article, you can replace the following block on the article_page.hbs
template with your chosen pattern:
{{! Article metadata }}
<div class="flex{{#is settings.article_metadata 'none'}}{{#unless settings.show_follow_article}} hidden{{/unless}}{{/is}}">
...
</div>
When using a style that appears at the end of an article, you can replace the following block, which appears just below the article content and attachments section, on the article_page.hbs
template with your chosen pattern:
{{#is settings.article_metadata 'date-end'}}
{{! Article metadata }}
<p class="text-gray-600 mt-6">
...
</p>
{{/is}}