/*
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.   ***************/

// Remove categories from default location
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
// Add categories after the title (priority 6, after title which is 5)
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 4);

add_filter('accessibility_onetap_widget_settings', function($settings) {
    if (function_exists('pll_current_language')) {
        // This sets the widget language to the current Polylang language
        $settings['lang'] = pll_current_language(); 
    }
    return $settings;
});

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


}