The Related Articles section will display regardless of how many articles are in it.
Some authors prefer to hide this section when it contains one or no articles.
To do so:
- Go to Customize > Style (HTML & CSS).
- In the Customize HTML, CSS, and JS section, select Custom HTML.
- Click on the Custom HTML tab.
- Select Article from the Select HTML section to edit dropdown.
- Copy the code below and paste it into the Article Custom HTML pane.
<script> //If Related Articles section at bottom of article has 1 or 0 articles, hide the section $(function() { if( $('.ko-related-articles ul li').length < 2 ) $('.ko-related-articles').hide(); }); </script> - Be sure to Save your changes.