- Issue created by @matoeil
it does not seem possible to add template suggestions depending on the content view mode display chosen
function mytheme_preprocess_views_view(&$variables) {
if ($variables['view']->id() === 'article') {
$row_view_mode = $variables['view']->getDisplay()->getOption('row')['settings']['view_mode'];
if (!empty($row_view_mode)) {
$variables['theme_hook_suggestions'][] = 'views_view__article__$row_view_mode;
}
}
}
$row_view_mode= 'teaser_podcast'
$variables['view']->current_display === 'block_7'
views-view--article--teaser-podcast.html.twig is not taken
views-view--article--block-7.html.twig is taken even without the hook
allows custom suggestion templates
Active
11.1 🔥
views.module