The Needs Review Queue Bot → tested this issue. It either no longer applies to Drupal core, or fails the Drupal core commit checks. Therefore, this issue status is now "Needs work".
Apart from a re-roll or rebase, this issue may need more work to address feedback in the issue or MR comments. To progress an issue, incorporate this feedback as part of the process of updating the issue. This helps other contributors to know what is outstanding.
Consult the Drupal Contributor Guide → to find step-by-step guides for working with issues.
- Status changed to Needs review
almost 2 years ago 7:50am 3 April 2023 - Status changed to Needs work
almost 2 years ago 12:28pm 4 April 2023 - 🇯🇵Japan tyler36 Osaka
Exactly what I was was looking for!
Confirmed working on Drupal10.1.3
on demo site.I'm attaching the results of a test output similar in scope to #43.
The zipfile contains HTML output of pages with Twig and cache debugging on so you can see the template, caching and rendering times.## Test
1. Installed Drupal 10.1.3 using Umami profile
2. Cleared cache
3. Used wget to get static version of site (see UmamiPages.zip|pre-index.html)
4. Cleared cache
5. Applied patch #61
6. Cleared cache
7. Used wget to get static version of site (see UmamiPages.zip|post-index.html)
8. Used wget to get static version of site (see UmamiPages.zip|post2-index.html)You can see the cache hashes and render time change between 3 and 7.
Steps 7 & 8 produced identical pages (no cache clear between). - Status changed to Needs review
about 1 year ago 11:49am 20 November 2023 - 🇳🇱Netherlands watergate
Thanks a lot for the patch(es); this functionality was/is missing. I can confirm that everything works perfectly on Drupal 10.1.6.
I agree with the nitpick in #3178202-59: Render blocks later, so they can be placed individually in a region template → and think that
@group Render
makes the most sense (and is in line with the rest of the test classes in the namespace). I've updated the patch with the small change :) - last update
about 1 year ago 30,606 pass - Status changed to RTBC
about 1 year ago 8:29pm 20 November 2023 - 🇧🇪Belgium mollux
patch in #65 works as expected, I'm able to prevent certain blocks in a region to be rendered
- 🇮🇹Italy Giuseppe87
Does the #65 requires some manual action?
If I install it, every
region.html.twig
in the site has thecontent
variable valued as an emtpy string, killing pretty much the render of the site. - Status changed to Needs work
about 1 year ago 5:28pm 23 November 2023 - 🇳🇱Netherlands watergate
Does the #65 requires some manual action?
After applying the patch, everything should work as before. Using
{{ content }}
should still produce the same output as before. The extra functionality of the patch is that you can output specific blocks like{{ content.page_title }}
and{{ content|without('page_title') }}
.Please let us know if you can reproduce the problem using a clean install.
- 🇮🇹Italy Giuseppe87
I've tried with a D10 clean install and the patch doesn't cause the same problem.
I've identify that the bug I'm facing appears when using the Bootstrap theme → .
Being this a core issue, I guess the theme needs to solve the incompatibility, after this patch is merged.
- Status changed to RTBC
about 1 year ago 9:07am 26 November 2023 - 🇧🇪Belgium borisson_ Mechelen, 🇧🇪
- Status changed to Needs review
about 1 year ago 3:29pm 26 November 2023 - 🇬🇧United Kingdom catch
Changing render arrays in a minor release is OK, but that's quite major breakage of the bootstrap theme - I think we need to figure out why it's not rendering anything after the change, and either look at whether there's a way to keep it working, or open an issue against bootstrap with how it should change (which will need to support versions of core before and after this change).
Moving back to needs review for that.
- Status changed to Needs work
8 months ago 10:36am 23 May 2024 - 🇪🇸Spain luismagr
Hi all,
I'm running 10.2.5 and I can confirm it works as expected. I'm building a new theme started with the starterkit and this is working perfectly fine.
I'm not putting this issue back to 'Reviewed & tested by the community' because I can't confirm if it's working or not in a boostrap theme.
Thanks all for your work on this issue