Hello, can you please advise me where where can I edit this text please for the homepage slider? Just the name of the folder and file would be helpful.
<div class=”slideshow_align_caption”><h2 class=’avia-caption-title
I would like to change the Easy Slider caption to a <H>1 tag?
you can do that slidewise : open that slider in layout – click on the slide you like to change the heading tag – go to the tab: advanced and choose your tag “Heading Tag (Theme Default is <h2>)”
Thanks a lot for your help. What a simple solution!! Fantastic.
you can change the default heading tag by this snippet in child-theme functions.php:
function customize_slider_headings_default_tag( array $args, $context, array $extra_args = array()){
if( $context == 'avia_slideshow' ){
$args['heading'] = 'h1';
}
return $args;
}
add_filter( 'avf_customize_heading_settings', 'customize_slider_headings_default_tag', 10, 3 );
Then – all sliders that have set to default heading tag will have h1 titles