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

    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?

    #370782

    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

    #371343

    thx!
    Is this solution update safe?

    #371387

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.