Hi,
I've configured my footer to show my CMS links in vertical order.
Because I have a lot of CMS links configured I want to split the list. My footer is configured as a table with 5 columns.
Is it possible to show the CMS links in separate columns based on the CMS subcatgories?
What i would like is that following code would do an extra sellection to show only the links from a particular sub category (based on sub categroty id eg.)
{foreach from=$cmslinks item=cmslink}
{if $cmslink.meta_title != ''}
<li class="item">
● <a href="{$cmslink.link|addslashes}" title="{$cmslink.meta_title|escape:'htmlall':'UTF-8'}">{$cmslink.meta_title|escape:'htmlall':'UTF-8'}</a></li>
{/if}
{/foreach}
Is there a solution for this?
Thnx in advance and with regards