Hi @brankat96,
If you’d like to change the post title tag to H1, you can add the following code snippet to the functions.php file of your child theme:
add_filter('astra_the_post_title_before' , 'callback_function');
function callback_function(){
$tags = sprintf(
'<h1 class="entry-title" %2$s><a href="%1$s" rel="bookmark">',
esc_url( get_permalink() ),
astra_attr(
'article-title-blog',
array(
'class' => '',
)
)
);
return $tags;
}
You can refer to the attached documentation on how to safely add this code to your theme’s files. [Link to Documentation]
Hope this helps!
Kind regards,
Aradhy??