show category in blog

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
10/27/2012 3:15:39 AM
Gravatar
Total Posts 11

show category in blog

Can you show how to hide category at blog page level  but show it in blog entry detail.

Many thanks.

11/29/2012 3:14:23 PM
Gravatar
Total Posts 18439

Re: show category in blog

Hi,

If you upgrade to the latest version of mojoPortal, currently 2.3.9.4 it is possible. You can uncheck "Show Categories" in the feature settings to hide it on the blog cms page. Then from theme.skin you can enable it on the detail view like this:

<blog:BlogDisplaySettings runat="server" 
    UseBottomNavigation="true"
    UsejQueryCalendarNavigation="true"
    HideCalendar="false"
    HideFeedLinks="false"
    HideStats="false"
    BlogViewUseBottomDate="true"
    BlogViewHideTopPager="false"
    BlogViewHideBottomPager="false"
    ArchiveViewHideFeedbackLink="false"
    HideTopSideBar="false"
    HideBottomSideBar="false"
    OverrideListItemHeadingElement=""
    PostListForceExcerptMode="false"
    PostListForceTitleOnly="false"
    PostListUseBottomDate="true"
    PostListDisableContentRating="false"
    DetailViewDisableContentRating="false"
    UseBottomContentRating="true"
    DisableShowCategories="false"
    DisableShowArchives="false"
    DisableShowStatistics="false"
    RelatedPostsPosition="Side"
    ShowAuthorBioInPostList="true"
    ShowAuthorBioInPostDetail="true"
    ShowCategoriesInPostDetail="true"
    
/>

Hope that helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.