Remove blog categories on blog posts

Hi,

I tried using this to remove blog categories, but it also removed the author. I’d like to keep the data and author for blog posts. How do I do that??

.p-meta span,
.p-meta>span:after {
display: none;
}

.p-meta span:nth-child(2) {
display: block;
}

Hey Craig,

The following is the correct code to hide the categories for the Integrity stack. Add it in Theme Options > CSS and please remove the incorrect code to avoid conflicts.

.p-meta > span:nth-child(2):after,
.p-meta > span:last-child {
    display: none;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.