Blue Well-known member Aug 28, 2015 #1 How do you remove the New Profile Posts tab from the New Posts page?
Amaury Well-known member Aug 28, 2015 #2 It doesn't appear to be possible without an add-on. I had a quick look at the templates and couldn't find the New Profile Posts tab being called anywhere in the template for New Posts. Upvote 0 Downvote
It doesn't appear to be possible without an add-on. I had a quick look at the templates and couldn't find the New Profile Posts tab being called anywhere in the template for New Posts.
Blue Well-known member Aug 28, 2015 #3 Amaury said: It doesn't appear to be possible without an add-on. I had a quick look at the templates and couldn't find the New Profile Posts tab being called anywhere in the template for New Posts. Click to expand... I don't have any adddons and do not want to install any. Thanks for trying. Upvote 0 Downvote
Amaury said: It doesn't appear to be possible without an add-on. I had a quick look at the templates and couldn't find the New Profile Posts tab being called anywhere in the template for New Posts. Click to expand... I don't have any adddons and do not want to install any. Thanks for trying.
Mike XenForo developer Staff member Aug 28, 2015 #4 I have responded to your ticket regarding this. The only option is removing all the tabs via the find_new_wrapper template or changing permissions to disable ability to view profile posts. Upvote 0 Downvote
I have responded to your ticket regarding this. The only option is removing all the tabs via the find_new_wrapper template or changing permissions to disable ability to view profile posts.
ibaker Well-known member Jan 29, 2016 #6 An easy way to achieve this is to add an if statement in the find_new_wrapper template to exclude the New Profile Posts tab: Code: <xen:comment> IB added if </xen:comment> <xen:if is="{$tab.title} != 'New Profile Posts'"> <li class="{xen:if '{$tabId} == {$selectedTab}', active}"><a href="{$tab.href}">{$tab.title}</a></li> </xen:if> Upvote 0 Downvote
An easy way to achieve this is to add an if statement in the find_new_wrapper template to exclude the New Profile Posts tab: Code: <xen:comment> IB added if </xen:comment> <xen:if is="{$tab.title} != 'New Profile Posts'"> <li class="{xen:if '{$tabId} == {$selectedTab}', active}"><a href="{$tab.href}">{$tab.title}</a></li> </xen:if>