Custom post view in a specific category

Posted in: Newspaper
Post count: 4

Hi,
I would like to have all posts in one specific category with no additional features, just the content : no share buttons, no likes buttons, tweets, no pagination, no related posts, no authors, dates, no previous or next articles, no sidebars. I have found how to hide the sidebar but how to get rid of the rest of them?

Thank you in advance
Regards
Ewa

Post count: 23312

Hello Ewa,

If you want to have all post in one specific category, please keep in mind that you simply have one category and all the post must be part of this category. Also, if you do not want to have the additional features you should turn off from Theme panel -> https://www.screencast.com/t/eScN9D0KrX -> https://www.screencast.com/t/nmirXIUZuWI

Thanks for your understanding!

Post count: 4

Hi Catalin,
thank you for your reply. Sorry if I have confused you. I have a few different categories but would like to make changes just to one specific category. I would like posts in this specific category to show without any extras. Just the content.
The screenshots you send me shows how to make changes to all categories.

Thank you
Regards
Ewa

Post count: 23312

Hello Ewa,

If you will look below this, you can make some changes Per category settings, like this -> https://www.screencast.com/t/hte0kNkU Also, if you want to remove the meta information for each post and page navigation, you should use the code below which will apply for this category, using the category ID.

The code is ->

.category-6 .td-module-meta-info, .category-6 .page-nav{
display:none;
}

The result is here -> https://www.screencast.com/t/YpDyeYjuorQY

Notice that the pagination is required to navigate through the category posts.

Thanks for your understanding!

Post count: 4

thank you for your answer.
i tried to hide share buttons on the top and the bottom of the posts in my category. i have used the code:

.category-76 .td-post-sharing-bottom {
display:none !important;
}
.category-76 .td-post-sharing-top {
display:none !important;
}

It doesn’t work 🙁 what am I doing wrong?

Regards
Ewa

Post count: 20688

Hi,

Try using the category slug in your code – https://www.screencast.com/t/MQ0I0U4zw and also use the .single class so it will apply only in the single post pages, like this

.single .category-travel .td-post-sharing-bottom {
display:none !important;
}
.single .category-travel .td-post-sharing-top {
display:none !important;
}

Please let me know if this works for you
Thanks

Post count: 4

Thank you Simion C.!
It works perfectly now!
Thank you for your help!

Kind Regards
Ewa

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.