I’m new to this stuff, so please bare with me. I’m trying to have a list of items that are in the same related category. If there isn’t a related item, I would like the message to say “We’re sorry there aren’t any related products.”. How would I go about writing this. Thanks in advance.
{exp:channel:entries channel="products" related_categories_mode="yes"}
<ul>
{if}
<li><a href="http://{title_permalink=">{title}</a></li>
{/if}
{if:elseif}
We're sorry there aren't any related products.
{/if}
</ul>
{/exp:channel:entries}