How can I remove "Archive for Category" before the titles that show up on category pages? I'd like for the title of the page to just be the Category title.
Thanks.
How can I remove "Archive for Category" before the titles that show up on category pages? I'd like for the title of the page to just be the Category title.
Thanks.
Hey,
open up propulsion\framework\php\function-set-avia-frontend.php and replace following text string:
$output = __('Archive for category: ','avia_framework').single_cat_title('',false);
with:
$output = single_cat_title('',false);Thank you very much.
Glad that I could help you :)
You must log in to post.