XF 2.2 Latest Thread not showing for Registered users but for admin it shows up in forum view.

stanley24

Member
Below are screenshots of Admin View.

Screenshot 2022-01-25 at 5.10.35 PM.webp

Screenshot 2022-01-25 at 5.10.53 PM.webp

The Other Guests View and Registered users view is as below , Where the the latest thread under the forum is not shown.


s1.webp
s2.webp

Can Some one help me on how this could be sorted. ??
 
Display none is set for that column.

1643118102910.webp

It's either style related something you have added to the extra.less (or another) template.
 
can u let me know what do i edit here ??
.node-extra
{
// display: table-cell;
display: flex;
vertical-align: middle;
width: 280px;
min-width: 230px;
padding: @xf-uix_nodePadding;
display: inline-flex;
//flex-direction: column;
//justify-content: center;
align-items: center;
font-size: @xf-fontSizeSmall;
<xf:if is="{{ property('uix_hideNodeLastPost') }}">
display: none;
</xf:if>

When i remove last three lines and hit save i get an error Oops! We ran into some problems. Please try again later. More error details may be in the browser console.
 
Probably this:
Code:
<xf:if is="{{ property('uix_hideNodeLastPost') }}">
display: none;
</xf:if>

It's a third party style and that is not standard so you will need to ask the style author.
 
Top Bottom