Hide Latest Activity in Member profile for everyone except member

vicontrol

Member
Messages
143
I'd like to remove the L:atest Activity tab from the member profile and only show it to each member. How would I do that?

Actually, how could I also hide Profile Posts and Postings? Not sure how useful these are either.



Thanks!
 

Attachments

  • 3ccda2141ccfe0fad69b16f61e656d6b.png
    3ccda2141ccfe0fad69b16f61e656d6b.png
    4.6 KB · Views: 0

vicontrol

Member
Messages
143
Got it!

I connected out this portion of the template member_view:

Edit template: member_view​

Code:
<!-- Remove Latest Activity tab from Member profile --
                <xf:if is="$user.canViewLatestActivity()">
                    <xf:if is="!$user.canViewPostsOnProfile()">
                        <a href="{{ link('members', $user) }}"
                            class="tabs-tab is-active"
                            role="tab"
                            aria-controls="latest-activity">{{ phrase('latest_activity') }}</a>
                    <xf:else />
                        <a href="{{ link('members/latest-activity', $user) }}"
                            rel="nofollow"
                            class="tabs-tab"
                            id="latest-activity"
                            role="tab">{{ phrase('latest_activity') }}</a>
                    </xf:if>
                </xf:if> -->

f61260f48df9fbcd2c54331c7d398fa7.png

QUESTION: Will this have unintended consequences in other areas of the forum?

Andre
 
Top