LISE Tag Field Definition
Posted: Mon Oct 30, 2023 4:57 pm
Hello All,
Does anyone have any experience with using the LISE Tag field definition as a clickable list? I've found an older post which doesn't seem to work anymore. I've got the following to work but I find the URL a bit cumbersome and the results display all items that includes the tag phrase within the content text even if the item doesn't include any tag:
Am I missing something really simple?
Thanks in advance for your help.
James
Does anyone have any experience with using the LISE Tag field definition as a clickable list? I've found an older post which doesn't seem to work anymore. I've got the following to work but I find the URL a bit cumbersome and the results display all items that includes the tag phrase within the content text even if the item doesn't include any tag:
Code: Select all
{if $item->Tags!=""}
{assign var="tags" value=','|explode:$item->Tags}
{foreach from=$tags item=tag}
<a href="/index.php?mact=LISEBlog,cntnt01,default,0&cntnt01tag={$tag}&cntnt01returnid={$returnid}">{$tag}</a>
{/foreach}
{/if}Thanks in advance for your help.
James