You can always use different category layout in theme panel > layout setting > categories > article display view, and delete the elements you want to hide.
if you’re referring to ARTICLE DISPLAY VIEW in theme panel, then you need to modify the module in include/modules/td_module_(…).php, and for the posts page it’s in loop-single-(…).php
Hi,
The theme doesn’t have an option for this, but you could try to hide them using custom css.
For example you can hide the meta info on post page and category page using this css code – https://www.screencast.com/t/nsvV95tW – https://www.screencast.com/t/kywadqiL2
.category-applications .td-module-meta-info {
display: none;
}
Replace applications with your category slug.
Also to hide next/prev and comments:
.category-applications .td-post-next-prev, .category-applications .comments {
display: none;
}
Thanks!
Thanks Alin for your reply.
So, if I want to hide more than 1 category, should I duplicate the code as below in the custom css or should I write it differently?
.category-slug1 .td-module-meta-info {
display: none;
}
.category-slug2 .td-module-meta-info {
display: none;
}
Moreover, isn’t there an easy way to customise this code so, when this data is hidden, the space is removed (as opposed to empty)?
Hi,
That would be the easiest way of doing what you want. You can multiply the code for other categories, if that is needed. The theme panel settings will affect all the posts, it is a general setting.
Inspect the page with the browser inspector, identify the elements you want to hide and create custom code, or adapt the one mentioned
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
The only element in your list that can be disabled per post with a setting, is the comments
– https://www.screencast.com/t/55jQeRzRee
Thanks