🇮🇳India @supriyagupta

Account created on 19 November 2021, over 3 years ago
#

Recent comments

🇮🇳India supriyagupta

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.

🇮🇳India supriyagupta

@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.

🇮🇳India supriyagupta

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.

🇮🇳India supriyagupta

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.

🇮🇳India supriyagupta

@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']);
    }
}
}

Production build 0.71.5 2024