I can confirm this snippet fixes the broken progress tracker.
Not sure if this was originally is a bug report or a support request, but now ran into the issue of the pager date format set in the view being ignored. After debugging it turned out that adding arrays with the + operator ignored the values from the second array, so I have replaced this part with an array_merge().
balagan β made their first commit to this issueβs fork.
Just rerolled patch from comment #25
Reroll for 1.1.2.
Thanks for the patch. It's working fine with metatag 2.1.0. Just adding my 2 cents that using the small select box is not the best UX.
balagan β created an issue.
balagan β created an issue.
Removed the custom close function, as it interferes with the default close behavior, and doesn't remove the lock from the body tag, when closing the dialog by clicking on the close icon.
This is already merged in 2.4.
Closing the jquery dialogs doesn't clear the body scroll locks, so I made some changes to call close() on Drupal.dialog.
Changed dialogClass to classes according to
https://www.drupal.org/node/3440844 β
With D10.3.1 this is what works for me.
Missed the patch in #4. Here you go.
For me it did not solve the problem. Under D10.3.1 the active menu item has wrong background.
Attaching a patch that solves my problem Under D10.3.1.
Related issue https://www.drupal.org/project/drupal/issues/3344200 π PathBasedBreadcrumbBuilder needs to be able to exclude pointless paths Needs work changes the logic that is modified here, and seems to solve the problem we encountered.
balagan β made their first commit to this issueβs fork.
Added patch.
Confirming that patch in #5 solves that problem, but probably that should be a separate issue.
Reroll of patch in https://www.drupal.org/project/drupal/issues/3439580#comment-15549200 π Make drupal.tableheader only use CSS for sticky table headers Needs review for D 10.2.6
Just rerolled patch #15 for D10.2.5.
Rerolled the patch in #34 to apply to 5.0.4.
Removing the message.messages route from the message.routing.yml file and its link from the message.links.yml file solves the problem.
The Message tab displays, linking to the view, and the link from the toolbar dropdown is removed.
The problem is, currently the Messages tab under /admin/content doesn't display. As the view is optional, maybe should revert this change and keep the different paths?
Now we have a view with path: 'admin/content/message' and this path is also specified in the message.routing.yml file
message.messages:
path: '/admin/content/message'
defaults:
_title: 'Messages'
_entity_list: 'message'
requirements:
_permission: 'overview messages'
balagan β created an issue.
I have rerolled patch #47 against 10.2.x
No conflicts were shown when rebasing.
Applying patch in #42 gives me the following error
error: patch fragment without header at line 1127: @@ -23,7 +26,11 @@ class DateTimeFieldTest extends DateTestBase {
I suppose I also got the error in #44, because now I see that I was actually using a local file 3185750-44.patch for patching. I suppose I have forgotten to get back to the issue and attach it. I have renamed it to 3185750-47.patch and will upload it here.
balagan β made their first commit to this issueβs fork.
balagan β created an issue.
balagan β created an issue.
balagan β created an issue.
balagan β created an issue.
Also, in the book.module file book_form_node_form_alter() function the 'Change book (update list of parents)' submit button is placed in the forms, if user has 'administer book outlines' permission, disregarding the allowed node type.
Reroll off patch #42
Reroll of patch 2862291-34.patch
Well, this problem doesn't occur on a clean D10 install, so closing this issue and sorry for the confusion.
Just removed background:none, which was responsible for this.
.ui-widget {
background: none;
}
balagan β created an issue.
Rerolled the patch, as it didn't apply anymore.
I confirm that applying the patch in #4 solves the problem. Edit/Delete operation buttons only display for eligible translations.
I confirm that this error doesn't occur in 8.x-1.2
Attached a patch that displays superscript on the widget summary form and the edit form.
balagan β created an issue.
hook_entity_field_info
and hook_entity_field_info_alter
are probably hook_entity_base_field_info and ..._alter
I have simplified the condition a bit more.
$bid = !empty($entity->book['bid']) ? $entity->book['bid'] : 0;
Rerolled the patch in https://www.drupal.org/project/entity_clone/issues/3076356#comment-14715404 β¨ Book Pages Clone Needs work to apply for the 2.x branch.
Meanwhile looking at the code I think the condition at line 117 is not what really what we want.
I have changed
$bid = isset($entity->book) && empty($entity->book['bid']) ? 0 : $entity->book['bid'];
to
$bid = !isset($entity->book) || empty($entity->book['bid']) ? 0 : $entity->book['bid'];
Just created a patch from the PR. Works fine.