/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
// Cargar CF7 solo en página de contacto
add_filter('do_shortcode_tag', function($output, $tag) {
    if ($tag === 'contact-form-7') return $output;
    return $output;
});

function gk_cf7_conditional_load() {
    if (!is_page('contacto')) {
        wp_dequeue_script('contact-form-7');
        wp_dequeue_style('contact-form-7');
    }
}
add_action('wp_enqueue_scripts', 'gk_cf7_conditional_load', 99);