I remember entering ini_set custom code but what about
function woodmart_child_enqueue_styles() {
$version = woodmart_get_theme_info( 'Version' );
if( woodmart_get_opt( 'minified_css' ) ) {
wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.min.css', array('bootstrap'), $version );
} else {
wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.css', array('bootstrap'), $version );
}
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('bootstrap'), $version );
}
Is this required for the child theme or somehow we also inserted it?
Should the snippet be empty by default?