Hi friend!
I want a classic layout template like twenty twelve theme for one category on my website. It means the category page will show all post in that category with title and full wp_content, no grid, no thumbnail, no feature image.
Demo: https://twentytwelvedemo.wordpress.com/blog/
How I have to do now?
Thank you!
-
This topic was modified 11 years by
appletxa.
Hi,
You can disable the Big Grid on that specific category and use module 15 to display your articles – http://screencast.com/t/wHNLQRH1Pc6 also if you don’t want featured image on your category page you can add a condition to not display it on category page(or a specific category page) using is_category() function – https://codex.wordpress.org/Function_Reference/is_category – http://screencast.com/t/V2tzSq74wc or use category id to apply this only on that specific category – http://screencast.com/t/T9hgfGh1EH7 – http://screencast.com/t/Oxc41vzTQob
if (!is_category())
If you don’t want to display entire post content you can use Read more tag – http://screencast.com/t/00796rylm5EO so it will be added Continue button – http://screencast.com/t/0opSRPDcaXz
Thanks!
Hi,
Unfortunately the theme doesn’t have an option to disable category title, you can hide it via custom css – http://screencast.com/t/qb5o1koK1J
.td-category-header .td-pb-span12 {
display: none;
}
If you want this only on specific category you can use category id – http://screencast.com/t/pcR4VT8opRF
.category-xx .td-category-header .td-pb-span12 {
display: none;
}
Thanks!
Thank you very much, Alin. Can you please help me with one more question. I have 4 categories, and I wan to creat a home page display all posts from 4 categories with classic layout like the #1 post I had asked you. How I have to do now?
Thank you!
-
This reply was modified 11 years by
appletxa.
Hi,
If you want to use a static homepage you can use Pagebuilder + Latest Articles template – http://screencast.com/t/n9aGM5Pt
Or you can use frontpage as a blog – http://screencast.com/t/bBWtutMRj2 and set module 15 to display articles for blog page – http://screencast.com/t/qdbxlA8p8x
Thanks!
