Best Premium and Free WordPress Themes › Forums › SuperMagPro › Hide info on author, date posted, category, etc. › Reply To: Hide info on author, date posted, category, etc.
July 27, 2016 at 1:01 am
#7037
acmethemes
Keymaster
Hello jimmyriverhillstraveler,
Thanks for your questions. If you want to do that, you have to customize the code. There is no readymade options to make it up and down. Please find the code inside
template-parts
and customize the code of content.php
and content-single.php
as your need.
Otherwise, please add the below CSS codes on Customize > Layout/Design Options > Custom CSS
.single .entry-meta {
display: none;
}
.single .entry-footer {
display: none;
}
.archive .entry-meta {
display: none;
}
.archive .entry-footer {
display: none;
}
Note: Child theme is recommended to customize theme.
Thank You
- This reply was modified 8 years, 5 months ago by acmethemes.