In my custom skin's Menu template, I have this code:
{foreach from=$_items name="loop" item="entry"}
{if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
{if is_numeric($entry.menu_function_result)}
<li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
{else}
<li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
{/if}
{else}
{if $entry.menu_label == "Private Messages"}
{* CUSTOM CODE for pending followers in menu HERE *}
{if jrUser_is_logged_in()}
<li><a href="{$jamroom_url}/{$_user.profile_url}/follow">Pending Followers: {jrCore_list module="jrFollower" search1="follow_profile_id = `$_user._profile_id`" search2="follow_active = 0" return_count=true no_cache=true}</a></li>
{/if}
{/if}
<li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
{/if}
{/foreach}
Now I see on both my own master admin profile and on a 'regular member' test profile, there are pending followers but no number shows in the drop down menu anymore like it should.
I assume some update tripped this up, what should I do? (BTW the same problem on my other pennywhistle site.)
--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015
updated by @strumelia: 01/01/21 04:56:58PM