🇮🇳India @shailja179

India
Account created on 22 July 2017, over 7 years ago
#

Recent comments

🇮🇳India shailja179 India

We are running a Drupal 10 site. But intermittently, ajax on all over site gets break.
And we are clearing the Drupal cache, it works again. What could be the reason for this behaviour, we are not sure.

🇮🇳India shailja179 India

I am not getting this error on Drupal 10. Embed video is playing with autoplay.
Give me steps for the error, i can provide the patch if there is issue.
See the screenshot.

🇮🇳India shailja179 India

I have applied the patch #5. Its working fine and changing the name properly.
RTBC +1.

🇮🇳India shailja179 India

This MR will fix the issue for Drupal 10 compatibility.
Moving to needs review.

🇮🇳India shailja179 India

I am using Drupal 10.1.x and Php 8.1. Its working for me.
See the screenshots.

🇮🇳India shailja179 India

@ty10086,
I ran the composer require phpoffice/phpspreadsheet in my project root and it started working.
For now you can run this command to make it work.

It should be in modules composer file. I am adding patch to modules composer file. Once it will be in new release, it will work on module download with composer.

🇮🇳India shailja179 India

I have applied the patch in #3, it works nicely.
And dependency is needed as its the part of webform and using its functions.

Attaching the screenshots as well.

🇮🇳India shailja179 India

@DieterHolvoet,
I didn't get this issue on my instance with same version.
Can you provide the steps?

🇮🇳India shailja179 India

Thanks @JParmar, This patch fixed the issue for me.
I have attached the screenshots for error and fixed version.
RTBC +1

🇮🇳India shailja179 India

@MukhtarM ,
Please use this patch. Patch will fix the issue for same version.

🇮🇳India shailja179 India

I have tried the MR and its working fine for me.

Attaching the screenshots for both cases. It should be moved to RTBC.

🇮🇳India shailja179 India

I was also facing this issue. Tried this patch and it fixed the issue.
Attaching the screenshot for both cases.

🇮🇳India shailja179 India

hook_uninstall does not resolve the issue for me.

🇮🇳India shailja179 India

@omkar.podey,
There may be something wrong with your css or images, for me icons are working properly for 11.x version.
Attaching the screenshot.

🇮🇳India shailja179 India

I didn't find this error with this version of smart trim. This is working fine and More link is showing properly and working too.
Attaching the screenshot.

🇮🇳India shailja179 India

@pglatz,

This error was for the first time for me.Still i have created this patch to fix this.
Please try this.

🇮🇳India shailja179 India

Added merge request.Plz check

🇮🇳India shailja179 India

@Vlooi Vlerke,

This patch will fix the issue.Please try this.

🇮🇳India shailja179 India

Yes, you can add that form in other part of view(header,footer) as a block. Thats why we need to expose filter in block otherwise it comes above view if we don't expose to block.

🇮🇳India shailja179 India

@Belba,
This is expected as its already mentioned in views setting. Attaching the screenshot.

Check this note when you try to put exposed form in block.
If set, any exposed widgets will not appear with this view.

🇮🇳India shailja179 India

@msbtterswrth,
This was a requirement to disable this scroll in https://ckeditor.com/old/forums/CKEditor-3.x/Disable-Scroll-Bar.
If you want to enable this, you can use this code in your custom css with some parent id.

.ck-source-editing-area textarea{
    overflow: visible;
}

This should work.

🇮🇳India shailja179 India

This feature is not working in other Drupal versions as well. For this we will have to enable the child links in toolbar as well.

🇮🇳India shailja179 India

@jsidigital, yes i am talking about file structure permission of private folder. But its working for me fine.
May be some custom module is causing the issue on your side.

🇮🇳India shailja179 India

@jsidigital, It is working for me. You can check if your private folder name/permission is correct.

🇮🇳India shailja179 India

Phpcs issues fixed in this patch.

🇮🇳India shailja179 India

@duckydan,
Please change the status for issue then.Its still in needs review.

🇮🇳India shailja179 India

This patch will fix the issue with Drupal 10. Try this.

🇮🇳India shailja179 India

This patch will fix the issue. Try this.

🇮🇳India shailja179 India

@Nikolay Borisov,
Paragraphs Editor Enhancements works with paragraph type (entity reference revision) field and we cannot translate this field type.
Thats why buttons are not translating.

For paragraph type field translation, we need to use paragraph asymmetric translation module but that module is not compatible with Paragraphs Editor Enhancements

So this needs to be fixed for asymmetric translation widget.

🇮🇳India shailja179 India

@AlfTheCat,
I didn't find any issue in edit and save. There may be some other reason at your end.

🇮🇳India shailja179 India

@bioschaf,
I am using these settings given in screenshot. But it is working as expected.
Can you give the proper steps to reproduce the issue?

🇮🇳India shailja179 India

@Ahmad Smhan,
This patch will make this stable.

🇮🇳India shailja179 India

This patch will make the module compatible for Drupal10. Try this.

🇮🇳India shailja179 India

This patch will make the pages consistent. Try this for 11.x.

🇮🇳India shailja179 India

I tried this patch. Patch is working fine and before after screenshots are attached there.
So moving to needs review.

🇮🇳India shailja179 India

My bad.Made the new changes in patch but MR looks good.

🇮🇳India shailja179 India

Apply this patch and clear the cache once, and search text to translate from admin/build/translate/search.
It should work now.

🇮🇳India shailja179 India

@prathamesh.save,
You can try something like below code to achieve this.

function hook_form_user_pass_alter(&$form, &$form_state) {
    $form['#submit'][] = 'custom_password_redirect';
 }
/**
* Redirects user after password reset form is filled.
*/
function custom_password_redirect(&$form, &$form_state){
  $form_state['redirect'] = 'node/20';
}
🇮🇳India shailja179 India

@alayham,
it will be better if you could give the steps too.

🇮🇳India shailja179 India

Uploaded wrong patch by mistake. This is the final patch.
Please use this.

🇮🇳India shailja179 India

@FiNeX,sorry it may be by mistake.I was reviewing your patch, may be accidentally. Sorry for that.

🇮🇳India shailja179 India

@giordy,
Can you provide the steps?
Thanks

🇮🇳India shailja179 India

@sayco,
Please check if this solution works and merge it.
Thanks

🇮🇳India shailja179 India

@AlfTheCat,
This validate function is not needed here. Try this patch, it should fix the issue.
Patch is with Drupal9.5.

🇮🇳India shailja179 India

@tripodcreative,
Try this new patch, it will revert the settings after uninstalling the module and will display title after disabling the checkbox.

🇮🇳India shailja179 India

@tripodcreative,
Basically it should change automatically after disabling the setting. I have added this patch to solve this issue.
It will automatically show title after disabling the setting.
Try this patch.

🇮🇳India shailja179 India

@Neslee Canil Pinto,
Please check this patch and merge.
Thanks

🇮🇳India shailja179 India

@jaydee1818
This is working fine with Drupal9.5. It can be some caching issue. You can try clearing cache.
It is working fine for me.

🇮🇳India shailja179 India

@drupgirl,
Try this patch to replace any token in To field. You just need to add token there, it will replace automatically.
Patch is for Drupal 9.5 with 8.x-1.8 version of redirect.
The issue is not with Agreement, it is actually with redirect module.

🇮🇳India shailja179 India

@tariqDev,
With fresh Drupal9.5.10 and module version 8.x-1.6 its working fine.
There must be some module in your instance which is conflicting with the functionality.

🇮🇳India shailja179 India

I am using it with block type but its working fine. See the attached screenshot of block backend and frontend.
It may be something else at your end which is causing issue.

🇮🇳India shailja179 India

@naveenvalecha,
Can you mention the steps to reproduce?
Thanks

🇮🇳India shailja179 India

@Nelo_Drup,
Have you downloaded the library from https://github.com/DrewDahlman/Mason?
You have to unzip this mason-master folder to your libraries folder and renamed it mason.
Error should resolve.

🇮🇳India shailja179 India

@Nelo_Drup,
Did you get this error on image upload? I tried uploading image and it works.

Production build 0.71.5 2024