I have tested the issue in drupal 11.x@dev version. After updating the role and creating the role getting status message but thememing is not working.
@megakeegman replicated this issue in drupal 11 this is not there. Tested the image with full html and basic html text editor with ckeditor 5 . URLs is getting updated now.
Using form alter hook rename it as per the requirement. But changing the draft button to edit means when node is in publish state or any other state and user need to be edit node then it will create lack of certainty to edit that node.
hi
use 2.0 version with drupal 10.3 it will work fine. the dependent module is not getting updated and 2.1 version of the dcdi module is not getting updated because of this.
@catch I think we can use page_attachments hook to remove the js file based on condition and based on user role. So that it will work proper according to our requirement.
function mymodule_page_attachments(array &$attachments) {
if (\Drupal::currentUser()->isAuthenticated()) {
if (isset($attachments['#attached']['library']['bigpipe'])) {
unset($attachments['#attached']['library']['bigpipe']);
}
}
}