Tag cloud from specific profile quota
Design and Skin Customization
Brian would that now only show it from one profile rather than all those in quota 8?
{* Tags from all Business Profiles *}
{jrCore_list module="jrProfile" limit="500" search="profile_quota_id = 8" template="null" assign="rows" return_keys="_profile_id"}
{if is_array($rows)}
{foreach $rows as $row}
{$_ids[$row._profile_id] = $row._profile_id}
{/foreach}
{$wanted = implode(',', $_ids)}
{/if}
<div class="title_block border-1px">Tag Cloud</div>
<div class="border-1px block_content">
<div class="item">
{jrTags_cloud height="300" search="_profile_id in $wanted"}
</div>
</div>