Account created on 24 February 2017, about 8 years ago
#

Merge Requests

Recent comments

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Not able to reproduce..

I am using drupal10.3.6 and installed module version 3.0.1.
On visiting the text format pages, I dont see any warnings or errors before or after enabling the style filter.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I have created MR to resolve the warning by checking the array count - https://git.drupalcode.org/project/shield/-/merge_requests/24

Attached the related patch too. Please verify.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

ushma โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I have created an MR to replace the deprecated method with removeDecoration(). Attached the patch for the same. Please review.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I have created MR to resolve this warning in case redirect_url remains undefined. - https://git.drupalcode.org/project/views_data_export/-/merge_requests/54

Attached related patch too. Please review.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I have created an MR to resolve this issue. Also attached related patch. Please review.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

@mattbloomfield your welcome. It would be great if you provide credit in case the contribution seems useful to you.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

The reason is- the current composer file of this module is restricting to fetch older version of Inline entity form module(which is a dependency here) and your project must be having the latest version..creating a conflict.
See this - https://www.drupal.org/project/brightcove/issues/3412590#comment-15408655 โœจ Allow the latest version of Inline Entity Form Needs review

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Above patch resolves the issue for me.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Have you tried uninstalling the devel module and then running the composer update commad?

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Please check if you are using the latest d10 compatible version devel module. The use of Twig_Extension is now removed in new symfony.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I have created a patch using the attched text file and also fixed the url issue. It will now show node alias instead of drupal internal path. Please verify this.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

ushma โ†’ changed the visibility of the branch 3418597-window.onload-not-firing to hidden.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I "think" the issue is related to the following change - https://github.com/jquery/jquery/issues/3194 in jQuery 3.x where onload is not guaranteed to fire inside a $(Document).ready state any more - which is what Drupal.behaviours is giving you.

I tested with drupal 8.9, php 7.4.

I've made a patch and it works for me.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

I am facing the same issue for drupal 10.1. Were you able to resolve it ?

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Hi @eojthebrave
I am in procces to upgrade drupal 9.5 to drupal 10 and currently using recurly 4.0.0-alpha1
How can I make this module compatible right now since there's still no stable release of D10 compatible version. Please suggest.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Hi
I am able to save h5p content using above method but its not showing up properly in front end. I found out that there is no entry in h5p_content_libraries table for the new h5p content id created using H5PContent::create(). What am I missing here ?

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Facing the same issue. Were you able to find out the actual reason for it ?

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Hi KlementDEV
were you able to resolve the issue ?

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

If node access is forbidden then instead of hook_node_view_alter, you can use hook_preprocess_node to disable cache for for your specific node type

for example - 

function mymodule_preprocess_node(&$variables) {
  if ($variables['node']->getType() == 'your_content_type_machine_name') {
     $variables['#cache']['max-age'] = 0;
     \Drupal::service('page_cache_kill_switch')->trigger();
  }
}

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

fixed the error using elvis operator.We can avoid ternary operator here. and coalesce wont work in case $config is empty or 0.
Please review.

๐Ÿ‡ฎ๐Ÿ‡ณIndia ushma

Hi webservant316
I am getting similar errors with drupal 9.4.5 and php 8.1. Were you able to fix them ?

Production build 0.71.5 2024