I’d like to make the name of my pages that appear on the title bar an h4 header tag instead of h1.
How can this be done?
Thanks for all your help as always. Best support ever!
-Dave
Hi atrixdave!
Try adding this to the bottom of your functions.php file.
add_filter( 'avf_title_args', 'enfold_customization_change_title_heading' );
function enfold_customization_change_title_heading( $args ) {
$args['heading'] = 'h4';
return $args;
}
Cheers!
Elliott
Thank you Elliott! That worked, except for this page: http://www.crude.com/blog/
How can I change that Title bar to h4?
Hi!
It seems to be working fine on my end – http://i.imgur.com/Cibe9J1.png
Have you figured it out already?
Cheers!
Yigit
Looks good…must have been a cache issue on my end. Thanks guys!!