I have the reverse_related_entries code below that displays a course area title and then displays the course items that are related to that specific course area.
The code below works but some course areas don’t have any related course items.
I would like to change the code below to only display the course area title if there are course items related to that area.
Any help or suggestions of a better way of implementing this would be really helpful.
{exp:channel:entries channel="course-area" orderby="title" sort="asc"}
<h3><a href="#">{title}</a></h3>
<p> <br />
<div><br />
<ul class="list_circles"><br />
{reverse_related_entries orderby="title" sort="asc"} <br />
{if course_Type=="Full Time"} <br />
<li><a href="http://{url_title_path=course}">{title}</a></li><br />
{/if}<br />
{/reverse_related_entries}<br />
</ul><br />
</div><br />
{/exp:channel:entries}