Same here ??
If I took both lines out and put the $content = “”; instead, I also lost the category name on the top.
So I only erased the “Category Archives:” and that worked perfectly.
Before…..
elseif ( is_category() ) {
$content = __(‘Category Archives:’, ‘wplook’);
$content .= ‘ ‘ . single_cat_title(“”, false);
}
After….
elseif ( is_category() ) {
$content = __(”, ‘wplook’);
$content .= ‘ ‘ . single_cat_title(“”, false);
}
Thanks again.