How do I display user profile counts on the homepage ?

alt=
duke
@musamensa
7 years ago
253 posts
how can i display the total count of my members on the home page
i am using {$item.user_linked_profiles} but its not working
updated by @musamensa: 06/22/17 08:17:55AM
douglas
@douglas
7 years ago
2,791 posts
You could use something like this:

{capture name="member_count" assign="member_count_row"}
    {literal}
        {if isset($_items)}
            {foreach $_items as $item}
                {$item.quota_jrProfile_profile_count}
            {/foreach}
        {/if}
    {/literal}
{/capture}
{jrCore_list module="jrProfile" quota_id="1" template=$member_count_row}

be sure to change the quota_id="1" to your actual quota ID

Hope this helps!


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos

Tags