Hi guys, is it possible to change the permanent link title for the categories? So the top title that says “archive for category:A”, would I be able to change it to “Artists by starting with a”?
Would prefer to be able to add something to the child themes functions.php if possible.
Hey bobfurgo,
Yes, please add this code at the bottom of your child theme’s functions.php:
function enfold_which_archive_output($output) {
if ( is_category() ) {
$output = __('Artists by starting with ','avia_framework').' '.single_cat_title('',false);
}
return $output;
}
add_filter('avf_which_archive_output', 'enfold_which_archive_output');
Hope it helps.
Best regards,
Nikko
THANK YOU SO MUCH!
Hi bobfurgo,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko