Verified the patch #9 and tested it on Drupal version 10.2.2 and Paragraphs module 8.x-1.17. The patch works fine and I have added the before and after screenshots for reference.
Steps do to reproduce the issue.
- Installed Paragraphs module 8.x-1.17 in Drupal version 10.2.2.
- Changed the admin theme to Claro.
- Created 8 new paragraph types.
- Added a Paragraphs field to Basic page content type and selected all the 8 paragraph types I have created.
- Edit the Widget settings of Paragraphs field in Manage form display of Basic page content type and set the Add mode to "Buttons" from "Dropdown Button".
- Tried to add a new content in basic page, and it shows the paragraphs field without vertical spacing between items.
- Applied the patch in #9 and again tested, the spacing issue is fixed.
I have applied the merge request !58 in #9 in pathauto version 8.x-1.12 in my Drupal 10.2.2 installation. The changes worked for me. The default Maximum alias length now updated to 224 from 100.
Attaching the screenshots before and after.
Anybody โ credited emilymathew โ .
This issue is already fixed in latest 2.x branch. There is no t() in classes.
This is not a permanent solution. The route cause is added here https://www.drupal.org/project/search404/issues/3361243 ๐ Return HTTP 404 response instead of 302 for custom search path. Active . When this issue is resolved, the problem mentioned in this ticket will also be resolved.
For a temporary workaround, instead of adding this configuration to search 404 module, it can be disabled directly by removing the path "/search404" in the "Basic site settings".
emilymathew โ created an issue.
Hi,
For some countries administrative area(state/province) is a text field, not a select list (eg: American Samoa). In that case, fetching administrative area name from subdivision code will not work.
I am uploading a patch to handle this case in addition to the fix mentioned in #14.
Please ignore the above merge request 24 and use this patch instead.
Thanks
Hi,
Thanks to @edisch. I love this feature of adding administrative area name token. It is really useful. The patch #9 worked for me only after adding additional brackets on the if condition. So I created a merge request based the on the patch in #9 with the tweak in if condition.
< if (
< $subdivision_code = $field_item->administrative_area
< && $country_code = $field_item->country_code
< ) {
---
> if (
> ($subdivision_code = $field_item->administrative_area)
> && ($country_code = $field_item->country_code)
> ) {
See https://git.drupalcode.org/project/address/-/merge_requests/24.patch.
I hope this will be useful for anyone who require the same feature.
Thank you.
emilymathew โ made their first commit to this issueโs fork.
Sorry for the late response. This is merged. Thank you...
As this is an urgent issue., released new version 2.1.2 with this change.
Thank you..
Hello,
I also need the same feature. The merge request in #3 cannot apply directly to current stable version 2.0.2. So created a patch file to use until this is merged.
Slightly modified it to avoid allowing space to separate tags. Because that destroys the ability to create tags having space.
For eg: If I add a tag "Latest Jobs" it will create as two separate tags as "Latest" and "Jobs", but I actually want "Latest Jobs" as a single tag.