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

    Dear all,

    I am looking for a way to come to a solution which was described in this topic.

    But I am using a child-theme and wonder if it is possible to change the breadcrumb heading from h1 to span within my child-theme functions.php.

    Kind regards!

    #405009

    Hey Simon!

    Thank you for using Enfold.

    Add this to the functions.php file:

    add_filter( 'avf_title_args', 'enfold_customization_change_title_heading' );
    function enfold_customization_change_title_heading( $args ) {
    	$args['heading'] = 'span';
    	return $args;
    }

    Regards,
    Ismael

    #405053

    Dear Ismael,

    thank you for your support. Issue solved!

    Have a nice day!

    #405076

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Breadcrumb heading change from h1 to span in child-theme possible?’ is closed to new replies.