Remove/hide category/post

Hello everyone
How to remove/hide from the home page one category or one post?

I will also find way to hide one category from front page.

Hi @roby,

I hope you are well today and thank you for your question.

You can try removing one post from home page by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

body.home article.post-1178 {
    display: none;
}

Please change the post id 1178 in the above custom CSS code to the post id that you want to hide from home page.

If you want to hide posts from specific category on home page then use the following custom CSS code and change the category markup with the category that you want to hide from home page.

body.home article.category-markup {
    display: none;
}

Best Regards,
Movin