Hi,
requirement for the Homepage logo to be wrapped in an H1 tag, and only the homepage.
I have looked at the solutions within the Forum, however, doesn’t seem to be working (#post-956260).
Any ideas, please?
Thanks.
Hey,
Thanks for contacting us!
I added following code to bottom of Functions.php file of your child theme
/* Wrap logo in H1 on frontpage */
function new_avf_logo_headline($headline) {
if ( is_front_page() ) {
$headline = "h1";
}
return $headline;
}
add_filter( 'avf_logo_headline', 'new_avf_logo_headline', 10, 1);
Please review your website :)
Best regards,
Yigit
Fantastic and speedy response!!!!
Thank you so much.
Please would you close the Ticket :)