Members recently online

Members recently online [Paid] 3.0

No permission to buy ($35.00)
Yes, not on a desktop right now but you could search the title in the phrase title and rename it to your chose.
I tried to change it in every phrase and no luck. This is what is in my template for this addon. I see nothing here either to change the title.

Code:
<xf:if is="{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'view') }} OR {{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }}">
    
<xf:css src="andy_membersrecentlyonline.less" />

<div class="block"{{ widget_data($widget) }}>
    <div class="block-container">
        <h3 class="block-minorHeader">{{ phrase('membersrecentlyonline_members_recently_online') }}</h3>
        <div class="block-body block-row">
            
            <ul class="listInline listInline--comma">
            <xf:foreach loop="$users" value="$user">
                
                <xf:if is="!{$xf.options.membersRecentlyOnlineShowAvatars}">
                    <xf:if is="!{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }} AND {$user.visible}">
                        <li class="membersrecentlyonline-content"><xf:username user="{$user}" rich="true" /></li>
                    </xf:if>
                    <xf:if is="{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }} AND {$user.visible}">
                        <li class="membersrecentlyonline-content"><xf:username user="{$user}" rich="true" /></li>
                    </xf:if>
                    <xf:if is="{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }} AND !{$user.visible}">
                        <li class="membersrecentlyonline-content-admin"><xf:username user="{$user}" rich="true" /></li>
                    </xf:if>
                </xf:if>
                
                <xf:if is="{$xf.options.membersRecentlyOnlineShowAvatars}">
                    <xf:if is="!{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }} AND {$user.visible}">
                        <span class="membersrecentlyonline-avatar">
                            <xf:avatar user="{$user}" size="{$xf.options.membersRecentlyOnlineShowAvatars}" img="true" />
                        </span>
                    </xf:if>
                    <xf:if is="{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }} AND {$user.visible}">
                        <span class="membersrecentlyonline-avatar">
                            <xf:avatar user="{$user}" size="{$xf.options.membersRecentlyOnlineShowAvatars}" img="true" />
                        </span>
                    </xf:if>
                    <xf:if is="{{ $xf.visitor.hasPermission('membersRecentlyOnline', 'viewAsAdmin') }} AND !{$user.visible}">
                        <span class="membersrecentlyonline-avatar-admin">
                            <xf:avatar user="{$user}" size="{$xf.options.membersRecentlyOnlineShowAvatars}" img="true" />
                        </span>
                    </xf:if>
                </xf:if>

            </xf:foreach>
            </ul>
            
        </div>
        <div class="block-footer">
            <span class="block-footer-counter">{{ phrase('membersrecentlyonline_total') }}: {$total}</span>
        </div>
    </div>
</div>
    
</xf:if>
 
Hello Andy,

How can I sort the usernames by last online time instead of alphabetical? Latest online to show first.
 
Good work on the last updates but is it possible in the future to be able to update this addon without the the recently online list being reset to zero?
 
Top Bottom