Our New Articles List allows you to display articles that have been created or published most recently. Your home page is a great place to put this list to help readers keep up with the latest information!
How does it work?
KnowledgeOwl will search behind the scenes for the newest articles and display them within the list, with newest displayed at the top. Articles which have the New callout added to them will display before articles which do not have that callout.
A "See more..." link at the bottom of the list will take you to a full page of all New articles, located at /help/new-articles (or /home/new-articles or /docs/new-articles depending on which root path you've chosen). You can see ours here: https://support.knowledgeowl.com/help/new-articles
You can choose to display anywhere from 1-10 of these most recently created published articles.
Setup
By default, the 5 most recent articles will be displayed. You can change this to display between 1-10:
- Go to Settings > Basic.
- Scroll to the Article List Settings section.
- Click on the dropdown next to New Articles and select the number of articles you'd like the list to display (1-10).
- Be sure to Save your changes.
In our default themes, the New Articles List is already added to:
- Your knowledge base home page
- Your 404 error page
- Your default right column HTML
If you'd like to add it somewhere else, or if you've customized the HTML and no longer see the listt on the pages listed above, review the directions below to add it! You'll need this merge code: [template("new-articles")]
Add the New Articles List to all articles
You can place the new articles merge code in the HTML of all articles. Go to Settings > Style > Custom HTML and select Article. You can place the merge code after the article body merge code or in the hg-article-footer div.
Either of these locations will display at the bottom of each article.
You'll probably also want to add a header to display above the new article links as well and perhaps a div with a class so that you can style the list.
Something like the following should do:
<div class="new-articles">
<h3>New Articles</h3>
[template("new-articles")]
</div>
Add the New Articles List to individual articles
If you only want to display the New Articles List in certain articles you can place the new article merge code at the bottom of individual articles. To do so, edit the article and click the Code view in the upper left of the editor toolbar.
Scroll to the bottom of the article and paste the merge code.
You'll probably also want to add a header to display above the new article links as well and perhaps a div with a class so that you can style the list.
Something like the following should do:
<div class="new-articles">
<h3>New Articles</h3>
[template("new-articles")]
</div>
Re-add the New Articles List to the right column of your Knowledge Base
If you've removed the New Articles List from the right column of your knowledge base, you can re-add it by copying the relevant HTML from Default Right Column HTML and pasting it into Settings > Style > Custom HTML > Right Column.
Re-add the New Articles List to your home page
If you've removed the New Articles List from your home page, you can re-add it to by copying and pasting the relevant HTML from Default Home Page Article HTML into either the code view of Knowledge Base > Home Page or into Settings > Style > Custom HTML > Home Page.