No Post Titles Categories Archives Page

Hi , As per the attachments 1 & 2 my post titles are not showing when I go on my category EATS archive page. I just want to see the post titles, picture, and preview of the text to show. I don’t want the Category name (EATS) to appear above each post title when viewing it under Category Archives.

Also shown in attachment 3. In the tab it shows Eats ARCHIVES. Is there a way to remove the word ARCHIVES.

Hi @tanisha,

I hope you are well today and thank you for your questions.

I just want to see the post titles, picture, and preview of the text to show. I don’t want the Category name (EATS) to appear above each post title when viewing it under Category Archives.

To achieve this please remove the following CSS code that you have added in your custom CSS theme option.

body.archive.category #main header.page-header {
    display: none;
}

Then add the following custom CSS code in the custom CSS theme option.

body.archive.category #main .post-inner-content .cat-item,
body.archive.category #main > header.page-header {
   display: none;
}
Also shown in attachment 3. In the tab it shows Eats ARCHIVES. Is there a way to remove the word ARCHIVES.

You have to develop custom code to achieve this by using the following wp_title filter.

Best Regards,
Movin