User About Me box doesnt show for anyone

pheyde

Member
hey the user about me box doesnt show for anyone. it only shows mine and i am the admin. i have a normal user that wrote stuff in their about me box and it doesnt show publicly. but it does show when i look them up on admin cp. how can i fix this? thank you :)
 
It should appear under the Information tab in their profile in the About section.

For it to display, you would need to have this code in your member_view template.

It's either there, and you're not sure where it's supposed to show up, or it is missing from the template:

This is the code that should be in the template member_view, near the bottom.
<xen:if is="{$user.about}"><div class="baseHtml ugc">{xen:raw $user.aboutHtml}</div></xen:if>
 
Code:
.profilePage
{
    @property "profilePage";
 
    @property "/profilePage";
}
 
{xen:helper clearfix, '.profilePage'}
 
.profilePage .mast
{
    float: left;
    width: @profilePageSidebarWidth;
    padding-right: 10px;
    border-right: 1px solid @primaryLighterStill;
}
 
.profilePage .main
{
    margin-left: {xen:calc '@profilePageSidebarWidth + 10'}px;
    border-left: 1px solid @primaryLighterStill;
    zoom: 1;
}
 
/** ************************ **/
 
.profilePage .mast .section
{
}
   
    .profilePage .mast .sectionFooter
    {
        border-left: 1px solid @primaryLighterStill;
        border-right: 1px solid @primaryLighterStill;
        text-align: right;
    }
 
/** ************************ **/
 
.profilePage .mast .followBlocks .section
{
    margin-bottom: 20px;
}
 
.profilePage .mast .followBlocks .primaryContent.avatarHeap
{
    border: 1px solid @primaryLighterStill;
    border-top: none;
}
 
/** ************************ **/
 
.profilePage .mast .section.infoBlock
{
    @property "profilePageSidebarInfoBlock";
    padding: 2px;
    margin-bottom: 20px;
    border: 1px solid @primaryLighterStill;
    border-radius: 4px;
    @property "/profilePageSidebarInfoBlock";
}
 
    .profilePage .mast .section.infoBlock .primaryContent,
    .profilePage .mast .section.infoBlock .secondaryContent
    {
        overflow: hidden;
    }
 
    .profilePage .mast .section.infoBlock .primaryContent:last-child,
    .profilePage .mast .section.infoBlock .secondaryContent:last-child
    {
        border: none;
    }
 
    .profilePage .infoBlock dt
    {
        @property "profilePageSidebarInfoBlockDt";
        font-size: 11px;
        margin-top: 5px;
        @property "/profilePageSidebarInfoBlockDt";
    }
 
    .profilePage .infoBlock dd
    {
        @property "profilePageSidebarInfoBlockDd";
        margin-bottom: 5px;
        @property "/profilePageSidebarInfoBlockDd";
    }
   
    .profilePage .mast .shareControl
    {
        margin-top: 10px;
    }
 
/* ***************************** */
/** [ Items...........(count) ] **/
 
.textWithCount
{
    overflow: hidden; zoom: 1;
}
 
    .textWithCount .text
    {
        float: left;
    }
 
    .textWithCount .count
    {
        float: right;
    }
   
        .textWithCount.subHeading .text
        {       
            color: @secondaryDarker;
        }
       
        .textWithCount.subHeading .count
        {
            margin: -3px 0;
            padding: 2px 6px;
            border-radius: 5px;
            border: 1px solid @secondaryLighter;
            background-color: @secondaryLightest;
            color: @secondaryDarker;
        }
 
/** ************************ **/
 
.profilePage .primaryUserBlock
{
    border-top: 1px solid @primaryLighterStill;
}
 
.profilePage .primaryUserBlock .mainText
{
    padding-bottom: {xen:calc '@profilePageTabHeight + 14'}px;
}
 
    .profilePage .primaryUserBlock .followBlock
    {
        float: right;
        font-size: 11px;
        text-align: right;
        overflow: hidden; zoom: 1;
    }
   
        .profilePage .primaryUserBlock .followBlock li
        {
            float: right;
            margin-left: 10px;
        }
   
        .profilePage .primaryUserBlock .followBlock .muted
        {
            font-size: 10px;
            clear: both;
        }
 
    .profilePage .primaryUserBlock h1
    {
        @property "profilePageUsername";
        font-size: 18pt;
        color: rgb(230, 230, 230);
        @property "/profilePageUsername";
    }
   
    .profilePage .primaryUserBlock .userStatus
    {
        @property "messageText";
        font-size: 10.6pt;
        font-family: Verdana, Geneva, Georgia, "Times New Roman", Times, serif;
        color: rgb(197, 197, 189);
        line-height: 1.4;
        @property "/messageText";
       
        @property "profilePageUserStatus";
        font-style: italic;
        font-size: 9pt;
        padding-top: 5px;
        margin-top: 5px;
        @property "/profilePageUserStatus";
    }
   
    .profilePage .primaryUserBlock .deleteSpam
    {
        font-size: 11px;
        margin-left: 10px;
    }
   
    .profilePage .primaryUserBlock .lastActivity
    {
        @property "profilePageLastActivityText";
        font-size: 11px;
        padding-top: 5px;
        margin-top: 5px;
        border-top: 1px solid @primaryLighterStill;
        @property "/profilePageLastActivityText";
    }
   
        .profilePage .primaryUserBlock .userStatus .DateTime
        {
            color: @mutedTextColor;
            font-size: 10px;
        }
   
    .profilePage .primaryUserBlock .primaryContent,
    .profilePage .primaryUserBlock .secondaryContent
    {
        padding-left: @profilePageTabInset;
        border: none;
    }
 
.profilePage .tabs.mainTabs
{
    padding: 0 @profilePageTabInset;   
    margin-top: -{xen:calc '@profilePageTabHeight + 1'}px;
    min-height: {xen:calc '@profilePageTabHeight + 1'}px;
    height: auto;
    position: relative; /* ensure separate stacking context from .mainText */
    background: @secondaryContent.background-color;
}
 
    .profilePage .tabs.mainTabs li a
    {
        padding-left: @profilePageTabHeight;
        padding-right: @profilePageTabHeight;       
        line-height: @profilePageTabHeight;
        height: @profilePageTabHeight;
       
        @property "profilePageTab";
        font-weight: bold;
        font-size: 11px;
        background-color: rgb(27, 27, 27);
        @property "/profilePageTab";   
    }
   
        .profilePage .tabs.mainTabs li a:hover
        {
            @property "profilePageTabHover";
            color: rgb(230, 230, 230);
            background: rgb(23, 124, 147) url('@imagePath/xenforo/gradients/breadcrumb-fracture.png') repeat-x 0 0;
            @property "/profilePageTabHover";
        }
   
    .profilePage .tabs.mainTabs li.active a
    {
        @property "profilePageTabSelected";
        color: rgb(230, 230, 230);
        background-color: rgb(23, 124, 147);
        @property "/profilePageTabSelected";
    }
 
.profilePage .profileContent
{
    margin-left: @profilePageTabInset;
}
 
    .profilePage .profilePoster
    {
        padding-bottom: 10px;
        position: relative;
    }
   
        .profilePage .profilePoster textarea
        {
            height: 54px;
            width: 100%;
            box-sizing: border-box;
            *width: 98%;
            resize: vertical;
        }
       
        .profilePage .profilePoster .submitUnit
        {
            margin-top: 5px;
            text-align: right;
        }
 
.profilePage .profileContent .InlineMod
{
    overflow: hidden; zoom: 1;
   
}
 
.contactInfo,
.aboutPairs
{
    width: 500px;
}
 
    .contactInfo dl,
    .aboutPairs dl
    {
        margin-bottom: 5px;
    }
   
    .contactInfo dt,
    .aboutPairs dt
    {
        width: 30%;
    }
   
    .contactInfo dd,
    .aboutPairs dd
    {
        width: 68%;
    }
 
.aboutPairs
{
    margin-bottom: 1em;
}
 
.signature
{
    @property "messageText";
    font-size: 10.6pt;
    font-family: Verdana, Geneva, Georgia, "Times New Roman", Times, serif;
    color: rgb(197, 197, 189);
    line-height: 1.4;
    @property "/messageText";
   
    /*border: 1px solid @primaryLighterStill;
    padding: 10px;*/
<xen:if is="{$user.about}"><div class="baseHtml ugc">{xen:raw $user.aboutHtml}</div></xen:if>
}
 
It should appear under the Information tab in their profile in the About section.

For it to display, you would need to have this code in your member_view template.

It's either there, and you're not sure where it's supposed to show up, or it is missing from the template:

This is the code that should be in the template member_view, near the bottom.
<xen:if is="{$user.about}"><div class="baseHtml ugc">{xen:raw $user.aboutHtml}</div></xen:if>
i added this to the bottom but it still doesnt show. i pasted the code here
 
You've put the template code in member_view.css. It needs to be in just member_view.

It might already be in there, you'll have to check.
 
edit: actually its already in the code,

what could be the problem?

edit: nevermind , it seems to be working for everyone except a certain someone for some reason
 
Top Bottom