By default, your knowledge base includes three article lists on the homepage: Popular Articles list, New Articles list, and Updated Articles list.
You can remove any of these article lists.
The steps to follow depend on how old your knowledge base is.
Remove from Style Settings
In most knowledge bases, the articles are coded into the raw HTML in the Settings > Style page. To remove one or more article lists from your homepage:
- Go to Settings > Style.
- In the Customize HTML, CSS, and JS section, select Custom HTML.
- In the Select HTML section to edit dropdown, select Homepage.
- The article lists HTML begins at row 9:
<div class="ko-homepage-top"> <h1 class="hg-article-title xcolor">[homepage("title")]</h1> [template("large-search")] </div> <div class="hg-article"> <div class="hg-article-body"> <div>[template("icon-cats,max=8,col=4,desc=0")]</div> <div>[homepage("body")]</div> <div class="homepage-widgets row"> <div class="col-md-4 col-sm-6"><h3>[translation("article-lists:popular-articles")]</h3>[template("pop-articles")]</div> <div class="col-md-4 col-sm-6"><h3>[translation("article-lists:new-articles")]</h3>[template("new-articles")]</div> <div class="col-md-4 col-sm-6"><h3>[translation("article-lists:updated-articles")]</h3>[template("up-articles")]</div> </div> </div> </div>
- To delete the entire article lists section, delete all of rows 9-13. So your HTML would now look like this:
- To delete only one of the of the article lists, delete the row it's on from rows 10-12. So if we deleted the Popular Articles list only, our HTML might look like this:
<div class="ko-homepage-top"> <h1 class="hg-article-title xcolor">[homepage("title")]</h1> [template("large-search")] </div> <div class="hg-article"> <div class="hg-article-body"> <div>[template("icon-cats,max=8,col=4,desc=0")]</div> <div>[homepage("body")]</div> <div class="homepage-widgets row"> <div class="col-md-4 col-sm-6"><h3>[translation("article-lists:new-articles")]</h3>[template("new-articles")]</div> <div class="col-md-4 col-sm-6"><h3>[translation("article-lists:updated-articles")]</h3>[template("up-articles")]</div> </div> </div> </div>
Resize remaining lists
If you want to remove one list and have the others expand to use more space, changecol-md-4
tocol-md-6
for each remaining article list. - Be sure to Save your changes to make them live!
<div class="ko-homepage-top">
<h1 class="hg-article-title xcolor">[homepage("title")]</h1>
[template("large-search")]
</div>
<div class="hg-article">
<div class="hg-article-body">
<div>[template("icon-cats,max=8,col=4,desc=0")]</div>
<div>[homepage("body")]</div>
</div>
</div>
Remove from Homepage content editor
If your Homepage Custom HTML doesn't look like that in the samples above, your article lists are probably in the Homepage content editor. Go to the top-level Homepage option in the left navigation and use the editor to delete the article lists from the Homepage content editor.