Let me take a wack at it. I need this functionality for a project.
I tried applying the changes as a patch:
"patches": {
"drupal/custom_field": {
"Views individual subfield formatter support": "https://git.drupalcode.org/project/custom_field/-/merge_requests/74.diff"
}
}
and I got the following error:
- Applying patches for drupal/custom_field
https://git.drupalcode.org/project/custom_field/-/merge_requests/74.diff (Views individual subfield formatter support)
Could not apply patch! Skipping. The error was: Cannot apply patch https://git.drupalcode.org/project/custom_field/-/merge_requests/74.diff
In Patches.php line 331:
Cannot apply patch Views individual subfield formatter support (https://git.drupalcode.org/project/custom_field/-/merge_requests/74.diff)!
Is there any update on this?
Having multiple fields exposed in the views is working like a charm, we are just missing the part of displaying the values instead of keys.
Will this change be part of the current module?
The fix for line 131 of "queue_ui/src/Form/ItemDetailForm.php" is this one:
$data = $this->renderer->renderPlain($data);
Change to this:
$data = $this->renderer->renderInIsolation($data);
How are we are doing on this one?
Any updates?
Since Bootswatch
is already included in the main theme you can just do something like this to use Yeti
for example:
1. In your sub theme "style.scss" add:
// Import Bootswatch theme
@import '../../../../themes/contrib/bootstrap5/dist/bootswatch/dist/yeti/variables';
// Sub theme styling.
@import 'variables_drupal';
// Bootstrap overridden variables.
// @see https://getbootstrap.com/docs/5.2/customize/sass/#variable-defaults.
@import 'variables_bootstrap';
// Include bootstrap.
@import '../../../../themes/contrib/bootstrap5/scss/style';
// Import Bootswatch theme styles
@import '../../../../themes/contrib/bootstrap5/dist/bootswatch/dist/yeti/bootswatch';
// Include custom changes.
@import "custom";
2. Compile the changes like:
sass scss/style.scss css/style.css && sass scss/ck5style.scss css/ck5style.css