dewancodes → created an issue.
Nice suggestion by @ericgsmith.
Is there any solution available yet for Drupal 10, so we can choose "Responsive Image style" for 'Media Type Image'?
Hello @Gaurav Gupta
When I try to add data in the "caption" field of the image, data is not being saved in the database. Any clue how to fix it?
FIXED: I have fixed this issue by enabling following options on the following URL:
/admin/config/content/block-class/settings
Global Settings :
> Enable auto-complete
> Enable special chars
> Enable id replacement
Now I can save the block in Drupal 10.2.3 and PHP 8.2
#12 worked for me. Unpublished a node and remove URL aliases from which node you want to redirect to another node where you want to redirect this node.
Thanks @uri_frazier
I tried #27 on drupal 10 and it worked fine for me as error gone. Thanks @drupalninja99.
BEFORE:
$terms = taxonomy_term_load_multiple_by_name($item, 'tags');
AFTER:
$terms = \Drupal::entityTypeManager()->getStorage("taxonomy_vocabulary")->loadByProperties(["name" => (string)$item, "vid" => 'tags']);
(string) this is the string enforcement.
This worked for me.
Yeah, I also tried v3 and it fixed the bug for me. Thanks steveoriol →