Tagged: ,

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

    Hi, i need help figure out how to change the slide-entry-title entry-title <h3> to <h4>.
    There’s a function i can add? tks
    <br>
    <br>
    <h4>news</h4>
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' content_length='content' contents='title' date_filter='' date_filter_start='' date_filter_end='' date_filter_format='yy/mm/dd' period_filter_unit_1='1' period_filter_unit_2='year' page_element_filter='' offset='0' conditional='' bloglist_width='' columns='3' preview_mode='auto' image_size='portfolio' items='6' paginate='no' img_scrset='' lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' av_uid='av-7adpdy9' sc_version='1.0']

    tks!

    • This topic was modified 9 months, 3 weeks ago by emanar.
    #1421336

    Hey Rafael,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to replace h3 with the h4 tag or element.

    function avf_customize_heading_settings_mod( array $args, $context, array $extra_args = array() ){
      if( $context == 'avia_post_slider' ){
        $args['heading'] = 'h4';            
      }
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'avf_customize_heading_settings_mod', 10, 3 );
    

    Best regards,
    Ismael

    #1421409

    Perfect, Thank you

    #1421428

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘av_blog shortcode change title slide-entry-title entry-title h3 to h4’ is closed to new replies.