/*
 Theme Name: Flatsome Child Completo
 Theme URI: https://flatsome3.uxthemes.com/
 Description: Tema filho do Flatsome com suporte total ao UX Builder
 Author: Loja Fitness
 Author URI: https://loja.fitness.pt
 Template: flatsome
 Version: 1.0.0
*/

@import url("../flatsome/style.css");



######################################################
add_filter( 'woocommerce_locate_template', 'forcar_template_email_tema_filho', 10, 3 );
function forcar_template_email_tema_filho( $template, $template_name, $template_path ) {
    $tema_filho_path = get_stylesheet_directory() . '/woocommerce/' . $template_name;

    if ( file_exists( $tema_filho_path ) ) {
        return $tema_filho_path;
    }

    return $template;
}
