https://www.drupal.org/project/gin/issues/3472114 🐛 Using chrome zoom func makes ckeditor toolbar buttons stashed Needs work
Thank you for all the feedbacks!
I can confirm that an update to core 10.2.4 solves the problem.
I tested and reviewed the patch, works as expected. Thanks!
In the newest dev version for 2.1.x (not working in the 2.1.0 release) you can use the hook "hook_smart_trim_link_modify" to modify this text or the link in general.
Example:
/**
* Implements hook_smart_trim_link_modify()
*/
function MODULE_smart_trim_link_modify($entity, &$more, &$url) {
$more = t('Read more');
}
In the newest dev version for 2.1.x (not working in the 2.1.0 release) you can use the hook "hook_smart_trim_link_modify" to modify this text or the link in general.
Example:
/**
* Implements hook_smart_trim_link_modify()
*/
function MODULE_smart_trim_link_modify($entity, &$more, &$url) {
$more = t('Read more');
}
The patch from Christian.wiedemann (mine is similar) looks good to me and it solves the problem. Hope you can merge it soon.
I updated the patch for the latest version of views_parity_row.
Or we can just link to you're documentation issue: https://www.drupal.org/project/search_api_ai/issues/3383743 ✨ Missing documentation Active :-)
Thanks!
@javitan can you add you're solution so solve the problem? This can help others with the same exception.
Possible module: https://www.drupal.org/project/group_action →
Updated patch to be ready for Drupal 10. Thanks for the hint @lamp5!
Updated patch to prevent exception when the related media was deleted.
Sorry, this is related to the issue "Support for media": https://www.drupal.org/project/cocoen_beforeafter/issues/3312086 ✨ Support for media Needs work
We can close this issue.