Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1192669

    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.

    #1192692

    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

    #1192695

    THANK YOU SO MUCH!

    #1192701

    Hi bobfurgo,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘change permanent link title’ is closed to new replies.