tradtips
Member
Posted 1 year ago #
How remove or hide "Category Archives:"XX "text on Category Page posts)
Hi
I am vijay,
website http://www.onlineletsbuy.com
I can't find any answers for removing the text "Category Archives: category name" on the top on each category page.
please help me on this.
Thanks in advance.
you can add in css eg.
h2 .pagetitle { display:none !important; }
tradtips
Member
Posted 1 year ago #
you mean should i add this code in
stylesheet
(style.css) in theme editor.
Please give me little example where should i Paste this code or which code should i replace.
There is so many code's are.
[CSS code moderated - don't post huge amount of code into the forum - the limit is 10 lines - for CSS, post a link to your site (which you have) - for other codes, use the pastebin]
look into archive.php of your theme.
remove:
<h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
tradtips
Member
Posted 1 year ago #
should i remove only this code <h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
or replace with
h2 .pagetitle { display:none !important; }
my answer is unrelated to the previous reply by @adpawl
and clearly says 'remove' as a direct reply to your question.
tradtips
Member
Posted 1 year ago #
worked
Thanks your so much
Thanks for kind support.
vijender
use either
.archive .pagetitle{ display: none; }
or
.archive .page-title{ display: none; }
for me the first option worked well:)