📌 | Views Taxonomy Term Name Depth | Has taxonomy term NAME (with depth) no translation for dutch
🇫🇷France everhee
It's the same problem for me, option "Has taxonomy term NAME (with depth)" is not available in contextual filters. Using Drupal 10.2.7.
🇫🇷France everhee
everhee → created an issue.
🇫🇷France everhee
Last patch is very good. Is there any way that footnotes created with ckeditor 4 might be compatible to ckeditor 5 when switching the text format ?
🇫🇷France everhee
Hello, Some olders permissions appears in drupal 10 upgrade status with an alert :
- access flood control settings page
- access flood unblock
To remove those alerts, I add to revoke them in flood_control.install by adding :
function flood_control_update_9202() {
$roles = user_role_names(FALSE, 'access flood control settings page');
foreach ($roles as $roleKey => $roleName) {
user_role_revoke_permissions($roleKey, [
'access flood control settings page',
]);
}
}
function flood_control_update_9203() {
$roles = user_role_names(FALSE, 'access flood unblock');
foreach ($roles as $roleKey => $roleName) {
user_role_revoke_permissions($roleKey, [
'access flood unblock',
]);
}
}