Hello,
Need help to isolate problem.
The style.css is loading properly from woodmart-child theme
(the site was working and color swatch and all before theme update, i think it was 6.xx something)
And now most of the theme works if not all beside color swatch on woocomerce product.
When I disable content from functions.php or better say when I disable not to load style.css color swatch works.
when i remove this:
/**
* Enqueue script and styles for child theme
*/
function woodmart_child_enqueue_styles() {
wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/css/style.css’, array( ‘woodmart-style’ ), woodmart_get_theme_info( ‘Version’ ) );
}
add_action( ‘wp_enqueue_scripts’, ‘woodmart_child_enqueue_styles’, 10010 );
///
works – but when inspecting elements I couldnt find what I am missing.
Thank you.