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

    Hi. In Fullwidth Easy Slider the Caption Title defaults to <h2> size. I wish to have it be <h1> since this will be the Title of my page. How can I do that please?

    #1295478

    But you know that you can switch to h1 on the advanced tab of the slide itself – where you input the caption? :

    you can change the default heading to h1 on all sliders – because the filter is only in the av-helper-slideshow.php.
    So influence of that is for easy slider , full-width slider and full-screen slider aswell.

    this to child-theme functions.php:

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ){
      if( $context == 'avia_slideshow' ){
        $args['heading'] = 'h1';
      }
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );
    #1295584

    Guenni,

    Thank you for steering me in the correct place. I totally missed that setting option. All good now.

    #1295932

    Hi,

    Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.