I have been trying to reuse code Micheal gave me in another thread https://www.jamroom.net/the-jamroom-network/forum/my_posts/28969/module-specific-comments to show only tags from a certain profile_quota_id = 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>
But its still returning tags from profiles that are not in quota 8.
Maybe I am way over thinking this however.
updated by @garymoncrieff: 06/28/15 07:59:43PM