Hy
How can I change H3 tag to H4 tag in mansonry blog ?
Regards
cm
Hey ChrisCoach,
Here is the code you can put in your funtions.php
function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() )
{
if( $context == 'avia_masonry' )
{
$args['heading'] = 'h4'; // change heading to h4
}
return $args;
}
add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );
If you need further assistance please let us know.
Best regards,
Victoria
hi,
Ok, thank you, you can close this post
best regards
cm
Hi,
If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon