Hello,
Thanks for contacting us, and sorry for any inconvenience that might have been caused due to that.
The title of your pages is set by your theme, not by Rank Math. In this case, I can suggest you to get in touch with your theme provider to see if they can provide you with a solution with this issue.
However, if there’s any option available in your theme that provides you the flexibility to change the title tag to H1 or you’ve no other way to achieve that, you can still change the title tag to H1 by using the the_title filter hook. You may try adding the following filter to your child theme’s functions.php file, or insert the code using the Code Snippets plugin, so that you never lose the changes after updating your theme.
//change post title to h1
function change_title_to_h1( $title, $id = null ) {
return '<h1>'.$title.'</h1>';
}
add_filter( 'the_title', 'change_title_to_h1', 10, 2 );
Hope that helps, and please do not hesitate to let us know if you need our assistance with anything else.
Thank you.
hello
I have contacted the theme provider and it is indeed their problem. It’s resolved now, thanks for your help
Hello,
Glad that everything has been sorted out. If you have any other questions in the future, know that we are here to help you.
Thank you.