You can mark this topic as resolved if your issue was solved.
Regards.
Hello Stewart,
You can achieve your desired outcome in two ways:
- Use a widget that allows you to filter the categories and display posts based on a specific category only
- Or you can use the following CSS code. The code hides the category label that you don’t want to display on the sidebar.
You can insert this code from your WordPress Dashboard by clicking on Customize>>Additional CSS or If you are using a theme then there should be a theme options panel providing a specific option to insert custom CSS.
.featured-desc .below-entry-meta .cat-links a.at-cat-item-45 {
display: none;
}
Hope this helps.