Tagged: H1
We now have an h1 in the title of our page. And I realized that the main-title entry-title function is also an h1. So I would like to know how to change main-title entry-title to h2.
tks!
Hi Rafael,
Can you give us a link to the page mentioned? so we can inspect and check which file it belonged to.
Best regards,
Nikko
Yes i can! All our pages has multiple <h1> tags on the page.
Hi emanar,
Thank you, please add this code in functions.php of your child theme:
( If you aren’t using a child theme yet, you can download and find instructions on how to use here: https://kriesi.at/documentation/enfold/child-theme/ )
function enfold_customize_heading_settings($args) {
$args['heading'] = 'h2';
return $args;
}
add_filter( 'avf_customize_heading_settings', 'enfold_customize_heading_settings');
Best regards,
Nikko