Workaround can be done via theme
/**
* Implements template_preprocess_views_...

Contribution Date
Technology
Contribution Project
Contribution Details

Workaround can be done via theme

/** * Implements template_preprocess_views_view_rss(). */ function template_preprocess_views_view_row_rss(&$variables) { foreach ($variables['item_elements'] as $key => $item) { if (str_contains($item['key'], 'dc:creator')) { unset($variables['item_elements'][$key]); } if (str_contains($item['key'], 'guid')) { $uuid = $item['value']; } } }
Issue Status
Needs work
Contribution Author
Files count
0
Patches count
0