回答:
私hook_css_alter()
はカスタムモジュール/テーマで使用することが最も簡単な解決策になると思います:
function MYMODULE_css_alter(&$css) {
// Get the path to the module
$path = drupal_get_path('module', 'field_group');
// Remove the unneeded files from the css array
unset($css[$path . '/field_group.css']);
unset($css[$path . '/field_group.field_ui.css']);
}
フィールドグループモジュールには他のCSSファイルもあります。
Field Groupが導入するすべてのCSSを完全に削除する場合は、
multipage/multipage.css
。