This. Just spent several hours debugging why the template wouldn't kick in. Added a field and voila.
I couldn't get #23 to work. Once the combined node type filter was checked, I couldn't uncheck it. So I went back to #20. That didn't work but it was because the query parameter didn't work. Revised the query parameter. Here's what's working for me. We're using the checkbox filter and combining 4 different node types into a single type called "Page". Here's the patch and interdiff.
Correcting an issue that was showing up when trying to add a chart from the Charts module ( https://www.drupal.org/project/charts β ). We're getting the following error with this patch when trying to add a Charts block to layout builder if the Charts block isn't figured correctly:
"Warning: Undefined array key 1 in auto_entitylabel_form_layout_builder_add_block_alter() (line 112 of modules/contrib/auto_entitylabel/auto_entitylabel.module)."
It's complaining about block_bundle in
list($plugin_id, $block_bundle) = explode(':', $build_info['args'][3]);
As $block_bundle isn't being used anywhere, removed it from the patch.
Same issue for me. Using the Month format and have unchecked the "Use "Previous/Next" labels" checkbox in the Pager settings. The previous and next links show as the previous and next month names in the view preview. But on the actual page with the calendar, they still show as Previous and Next.
I had the same issue and the #15 patch fixed it for me. Thanks!
micnap β created an issue.
I'm having trouble upgrading to D10 because of this module. The site is currently on 2.0.2. Composer adds a drupal/core requirement to the lock file for contrib modules. The version of drupal/core that gets specified is taken from core_version_requirement in the info.yml file. So, because drupal/core 8 or 9 is specified in the lock file for this module, Composer says, "nope, can't upgrade you to D10". Even specifying drupal/block_exclude_pages:2.1.0-beta2 in the `composer require` command for the upgrade, it fails because of this drupal/core 8 || 9 requirement. And I can't upgrade this module to the D10 version on D9. Suggestions for unblocking this circular dependency?
micnap β made their first commit to this issueβs fork.
micnap β made their first commit to this issueβs fork.