Hi @jixxer
1.if u want to remove the featured image the go to single-content.php file ther u can comment like this with this symbol inside bracket(//).
Eg: //the post_thumbnail();
2.If u remove the previous and next link then u will be unable to go to next/previous page so instead it can be made small
go to style.css on line 1001 replace with this code
.post-navigation a {
display: block;
width: 48.5%;
height: 10px;
/* margin-top: 3%; */
margin-bottom: 3%;
background: #e2e2e2;
overflow: hidden;
position: relative;
}
3.Just go to single-content.php search for the_date comment like this //the_date();
this will hide the date
And for category title search for the_archive_title(); and comment it as //the_archive_title();
4.to show author and post date at the top
search for the_archive _title(); below this add the_author(); followed by the_date();
this will add author and date below title.
Thanks hope this work
Thread Starter
Jixxer
(@jixxer)
Thanks so much for taking the time to try and help. Here are my results:
1 – I went into content.php and changed <?php the_post_thumbnail(‘post-thumb’); ?> to <?php //the_post_thumbnail(‘post-thumb’); ?>. But this didn’t work. it removed the thumbnails from the main index page, which I did not want. I want to remove them from within the post.
I also I tried by editing the following code from the CSS file:
.featured-media {
display: block;
overflow: hidden;
position: relative;
}
.featured-media a,
.featured-media iframe,
.featured-media object { display: block; }
.featured-media img {
display: block;
width: 100%;
height: auto;
}
What I did was I changed the two instances of “display” to “display: none” on both of the above lines of code, but that removed the featured image from the post but also the index/home page as well, which is also not what I wanted.
2 – I added this code to the Additional CSS page and this worked:
.post-navigation a {
display: none;
}
3 – I added this code to the customs CSS page and this worked:
.post-meta-bottom {
display: none;
margin-top: 40px;
font-size: 0.85em;
color: #999;
}
4 – Sorry, on this one, which file are you suggesting I add this code too? I did a search on my whole site for the code archive_title, but I could not find it anywhere?
Thread Starter
Jixxer
(@jixxer)
Thank you. I figured out how to fix #1 and #4. All done now.