Hello,
I think there is a bug in Samsara (V 1.12) within functions.php, line 82
wp_enqueue_style( ‘woocommerce_responsive_frontend’, get_stylesheet_directory_uri().”/woocommerce/woocommerce-responsive.css” );
When woo commerce is activated and i use a child theme, get_stylesheet_directory_uri() points to the child theme, leading to a 404 error for the requested file (since it is located in the parent theme folder). Exchanging “get_stylesheet_directory_uri” path with “get_template_directory_uri” should fix the issue.
Regards, Christof
Edit: I wasn’t clear on my request: Can you review this fix and include it for the next release?