My “Title Bar Settings” ist “Display title and breadcrumbs”. The title is wihtin a h1 tag and is link. I dont want to link the titel.
It should only be within the h1 tag. What is the best way to do this?
Hey bosbach!
Add this to the bottom of your functions.php file.
add_filter( 'avf_title_args', 'enfold_customization_remove_title_link' );
function enfold_customization_remove_title_link( $args ) {
$args['link'] = null;
return $args;
}
Cheers!
Elliott
thx!
Is this solution update safe?
Hi!
You can create a child theme. Add the code on the child theme’s functions.php: http://kriesi.at/documentation/enfold/using-a-child-theme/
Cheers!
Ismael