If you’d like to hide certain parts of your blog posts or post listings, you can do so by adding small CSS snippets to: Theme Options > Layout > Advanced > Custom CSS
To hide the post author on single posts, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-inner .pix-post-meta-author {
display: none !important;
}
Post Author on Single Posts
To hide the post author in blog elements or related posts, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-element .pix-post-meta-author {
display: none !important;
}
Post Author on Blog and Related Posts
To hide post categories on the single post page, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-inner .pix-post-meta-badges {
display: none !important;
}
Post Categories on Single Post Page
To hide post categories in blog items or related posts, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-element .pix-post-meta-categories {
display: none !important;
}
Post Categories on Blog and Related Posts
To hide post categories in blog carousel elements, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-main-slider .pix-post-meta-element .pix-post-meta-categories {
display: none !important;
}
Post Categories in Blog Carousel
To hide the comment count in the post page, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-box .pix-post-meta-comments {
display: none !important;
}
Post Comments Count on Single Post Page
To hide the comment count in blog or related post items, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-element .pix-post-meta-comments {
display: none !important;
}
Post Comments Count in Blog and Related Posts
To hide the post date on the post page, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-inner .pix-post-meta-date,
.pix-post-meta-inner .pix-post-entry-date {
display: none !important;
}

Post Date on Single Post Page
To hide the post date in blog or related post items, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-element .pix-post-entry-date,
.pix-post-meta-element .pix-post-meta-date {
display: none !important;
}

Post Date in Blog and Related Posts
To hide the post title in the single post page, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.single-post .pix-post-title {
display: none !important;
}
Post Title on Single Post Page
To hide the post title in blog elements, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-element .entry-title a {
display: none !important;
}
Post Title in Blog Items
To hide the excerpt text under blog posts, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-meta-element .text-break {
display: none !important;
}
Blog Post Excerpt
To hide the featured image in the post page, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.single-post .post-thumbnail {
display: none !important;
}Post Thumbnail on Single Post Page
To hide the next/previous post navigation, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.navigation.post-navigation { display: none !important; }
Post Navigation
To hide the tags section on the post page, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-post-tags { display: none !important; }
Post Tags
To disable related posts entirely, go to:
Theme Options > Blog > Advanced > Disable Related Posts > ON
To hide excerpt, date, and read more button from related posts while keeping the layout, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-related-items .w-100 > .position-relative > :not(.pix-post-meta-categories):not(.entry-title) {
display: none !important;
}
Related Posts Excerpt, Date and Read More Button
To hide the Facebook and X (Previously Twitter) buttons, go to:
Theme Options > Blog > Advanced > Disable Post Social Share Buttons > ON

Single Post Social Share Buttons
To remove the author info box below posts, go to:
Theme Options > Blog > Advanced > Disable Post Author Box > ON
To remove the website link from the author info box, go to:
Users > Edit User > Website Field

Post Author Box
To remove the “Like” button from your website blog and portfolio pages, go to:
Plugins > Deactivate pixfort Likes Plugin
To hide thumbnails in the blog carousel, add the following CSS snippet into:
Theme Options > Layout > Custom CSS
.pix-main-slider .pix-post-meta-element .d-block.pix-fit-cover, .pix-main-slider .pix-post-meta-element .card {
display: none !important;
}Thumbnails in Blog Carousel
To disable post comments, please follow the steps in this article:



