Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1230109

    Hy
    How can I change H3 tag to H4 tag in mansonry blog ?

    Regards
    cm

    #1230380

    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

    #1230675

    hi,
    Ok, thank you, you can close this post

    best regards
    cm

    #1230827

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘change h3 to H4 title mansonry’ is closed to new replies.