psx
Active member
Thank you, that worked by creating an accountWhat error are you seeing? You will need to have created an account and be logged in to use it.
Thank you, that worked by creating an accountWhat error are you seeing? You will need to have created an account and be logged in to use it.
Feeds. Sorry, I thought I had added that in there.I'm not sure which sections you're referring to, the new threads and new posts sections are core XF, they're entirely independent of a theme. Or are you looking at the threads and posts sections in Feeds?
Could the account that’s having an issue with content being displayed have filters applied thus hiding new and legit content?Edit 2: The plot thickens. Viewing the site as a guest in a private tab, ALL new content is being displayed
Worked brilliantly, many thanks @willlSomething like the following:
Less:.node-extra { width: 500px; }
Just note that because the row uses flexbox and variable widths, that width specified won't be exactly that value, but a fraction of it, so it may take some testing to get it to be the width you want it to be.
Under Appearance -> Style Properties -> Header and navigation, set "Visitor tabs location (mobile)" to "Initial (Don't Change)"
Changelog:
- Updated compatibility with XenForo 2.2.12
Note: This release cannot be used on XenForo 2.1, it is exclusively for XenForo 2.2 only.
Note: This update does not require a UI.X add-on update to function properly.
If you want to show the main tab bar's default tabs you can add this to the page_container template:
<xf:page option="uix_mainTabSets" value="forum" />
Apologies - I gave you that answer after attempting and failing to drink quite possibly the worst flavored coffee I've ever had in my life (I need to remember to check to see if something uses Stevia BEFORE I buy). Here's what you ACTUALLY want to addThank you for the response. Do I just drop it where ever I want in the page_container? I tried putting it under the navigation bar, but did not show up.
<xf:set var="$uix_mainTabSets" value="forum" />
Apologies - I gave you that answer after attempting and failing to drink quite possibly the worst flavored coffee I've ever had in my life (I need to remember to check to see if something uses Stevia BEFORE I buy). Here's what you ACTUALLY want to add
<xf:set var="$uix_mainTabSets" value="forum" />
Just stick that up in the top of page_container and that'll do it!
Interesting; I can confirm it works fine on my end. At this point I'd suggest submitting a support ticket.I tried adding that too, but it didn't seem to work.
Interesting; I can confirm it works fine on my end. At this point I'd suggest submitting a support ticket.
<xf:macro name="forum" arg-activeTab="">
<!-- first tab -->
<!-- new tab -->
<xf:if is="{$xf.options.forumsDefaultPage} == 'new_posts'">
<a href="{{ link('forums') }}" class="tabs-tab {{$activeTab == 'new_posts' ? 'is-active' : '' }}">{{ phrase('new_posts') }}</a>
</xf:if>
<a href="{{ link('forums/-/list') }}" class="tabs-tab {{$activeTab == 'forum_list' ? 'is-active' : '' }}">{{ phrase('forum_list') }}</a>
</xf:macro>
<xf:macro name="forum" arg-activeTab="">
<!-- first tab -->
<!-- new tab -->
<a href="{{ link('forums/-/list') }}" class="tabs-tab {{$activeTab == 'forum_list' ? 'is-active' : '' }}">{{ phrase('forum_list') }}</a>
<a href="{{ link('whats-new/posts') }}" class="tabs-tab {{$activeTab == 'new_posts' ? 'is-active' : '' }}">{{ phrase('new_posts') }}</a>
</xf:macro>
In the case of the default setup, it'll only show the "New Posts" tab if you have the default forum page set to New Posts; in your case that should be fine with your edits for the link.. As far as active tab goes, it's expecting a different new posts template, so you need to add the active nav tab to the right one.I adjusted it to this, but it is not doing what I want. Is there something else I need to do?
<xf:page option="uix_mainTabActive" value="new_posts" />
In the case of the default setup, it'll only show the "New Posts" tab if you have the default forum page set to New Posts; in your case that should be fine with your edits for the link.. As far as active tab goes, it's expecting a different new posts template, so you need to add the active nav tab to the right one.
In the "whats_new_posts" template add this after the title line:
<xf:page option="uix_mainTabActive" value="new_posts" />
We use essential cookies to make this site work, and optional cookies to enhance your experience.