I have the combination between these modules with the following code in the page:
Code: Select all
{foreach from=$items item='entry'}
{assign var='name' value=$entry->company_name}
{assign var='lat' value=$entry->latitude}
{assign var='long' value=$entry->longitude}
{capture assign='description'}
<img src="{$entry->logo_path}" />
<h3>{$entry->company_name}</h3><br />
<a href="{$entry->detail_url}">Weitere Informationen</a><br /><br />
{/capture}
{cggm_add_dynpoint map='1' name="$name" lat="$lat" long="$long" description="$description" lang="de_DE"}
{/foreach}
I tried with {if $categorytext='the name of the category'}
but that does not present the category.
How do I check on category?
Thanks,
Jan