Yes, I found the function, its this:
public function show_big_title_content( $content ) {
$alignment = get_theme_mod( 'hestia_slider_alignment', 'center' );
$slider_elements_classes = $this->get_big_title_elements_class( $alignment );
$this->maybe_render_widgets_area( $alignment, 'right', 1 );
?>
<div class="
<?php
if ( ! empty( $slider_elements_classes['slide'] ) ) {
echo esc_attr( $slider_elements_classes['slide'] );
}
?>
">
<?php if ( ! empty( $content['title'] ) ) { ?>
<h1 class="hestia-title"><?php echo wp_kses_post( $content['title'] ); ?></h1>
<?php } ?>
<?php if ( ! empty( $content['text'] ) ) { ?>
<span class="sub-title"><?php echo wp_kses_post( $content['text'] ); ?></span>
<?php } ?>
<?php if ( ! empty( $content['button_link'] ) && ! empty( $content['button_text'] ) ) { ?>
<div class="buttons">
<a>"
title="<?php echo esc_html( $content['button_text'] ); ?>"
class="btn btn-primary" <?php echo hestia_is_external_url( $content['button_link'] ); ?>><?php echo esc_html( $content['button_text'] ); ?></a>
<?php hestia_big_title_section_buttons_trigger(); ?>
</div>
<?php } ?>
</div>
<?php
$this->maybe_render_widgets_area( $alignment, 'left', 1 );
}
so i copied the file to my child theme’s folder and changed the tags, but its not updating in the page…