Hotfix Active member Feb 8, 2021 #1 Hello, many users of my community wish that the ABOUT page was shown before the PROFILE POSTS. Is this something that is possible to do? The picture is taken from the profile page.
Hello, many users of my community wish that the ABOUT page was shown before the PROFILE POSTS. Is this something that is possible to do? The picture is taken from the profile page.
P Paul B XenForo moderator Staff member Feb 8, 2021 #2 You would have to edit the member_view template. Upvote 0 Downvote
Hotfix Active member Feb 9, 2021 #3 I managed to move the "About tab", but not the content: Notice how the "About" tab shows the user's status. Here's the change I did: <!--[XF:tabs:start]--> <a href="{{ link('members/about', $user) }}" class="tabs-tab is-active" id="about" role="tab">{{ phrase('about') }}</a> <xf:if is="$user.canViewPostsOnProfile()"> <a href="{{ link('members', $user) }}" class="tabs-tab" role="tab" aria-controls="profile-posts">{{ phrase('profile_posts') }}</a> </xf:if> <a href="{{ link('members/recent-content', $user) }}" rel="nofollow" class="tabs-tab" id="recent-content" role="tab">{{ phrase('postings') }}</a> <!--[XF:tabs:after_members/recent-content--> <xf:if is="$user.canViewLatestActivity()"> <a href="{{ link('members/latest-activity', $user) }}" rel="nofollow" class="tabs-tab" id="latest-activity" role="tab">{{ phrase('latest_activity') }}</a> I just changed the order. How can one match the page match with the tabs? Upvote 0 Downvote
I managed to move the "About tab", but not the content: Notice how the "About" tab shows the user's status. Here's the change I did: <!--[XF:tabs:start]--> <a href="{{ link('members/about', $user) }}" class="tabs-tab is-active" id="about" role="tab">{{ phrase('about') }}</a> <xf:if is="$user.canViewPostsOnProfile()"> <a href="{{ link('members', $user) }}" class="tabs-tab" role="tab" aria-controls="profile-posts">{{ phrase('profile_posts') }}</a> </xf:if> <a href="{{ link('members/recent-content', $user) }}" rel="nofollow" class="tabs-tab" id="recent-content" role="tab">{{ phrase('postings') }}</a> <!--[XF:tabs:after_members/recent-content--> <xf:if is="$user.canViewLatestActivity()"> <a href="{{ link('members/latest-activity', $user) }}" rel="nofollow" class="tabs-tab" id="latest-activity" role="tab">{{ phrase('latest_activity') }}</a> I just changed the order. How can one match the page match with the tabs?