Adding People You Follow:

Michael

Active member
I am unsure how to get it to turn on, is there an option to turn this on/off in the sidebar in the admin panel, if so where is it? The code is there in the templates but nothing is appearing for me on our style.

Thank you.
 
Beta 2, I have updated the online users template accordingly but it isnt showing somehow.

Code:
<xen:if hascontent="true">
                <h4 class="minorHeading"><a href="{xen:link account/following}">{xen:phrase people_you_follow}:</a></h4>
                <ul class="followedOnline">
                    <xen:contentcheck>
                        <xen:foreach loop="$onlineUsers.records" value="$user">
                            <xen:if is="{$user.followed}">
                                <li title="{$user.username}" class="Tooltip"><xen:avatar user="$user" size="s" img="true" class="_plainImage" /></li>
                            </xen:if>
                        </xen:foreach>
                    </xen:contentcheck>
                </ul>
                </xen:if>

Is present in the style too which made me think there might be an option for it somewhere.

Its sorted out now. Thanks Brogan.
 
Top Bottom