With the patch #25 and views_infinite_scroll installed, I had to make my own url_processor plugin QueryString because the Request object used in the initializeActiveFilters function doesn't have any data to get the active filters when Ajax is enabled.
if ($this->request->isXmlHttpRequest()) {
// $url_parameters = $this->request->request;
$url_parameters = new InputBag($_GET);
}
else {
$url_parameters = $this->request->query;
}
$url_parameters was always empty.
I replace it with
if ($this->request->isXmlHttpRequest()) {
$url_parameters = new InputBag($_GET);
}
else {
$url_parameters = $this->request->query;
}
in my custom url_processor plugin.
There was an error in the tests/src/Kernel/Plugin/migrate/BeanDeriverTestBase.php file.
pbonnefoi β credited Soubi β .
There is also some entityQuery in the content_browser.install file.
Soubi β created an issue.
The patch works fine on Drupal 9.5.9 with CKEditor 5 :)
The patch can't be applied to the current version of the module :(
This patch works on Drupal 9.5.9
You can try the patch I posted here : https://www.drupal.org/project/background_image/issues/3343182 π Background Image Not Working Fixed
In fact, in the current version, page.background_image is always empty, my patch add an implementation of hook_preprocess_page to fill page.background_image.
Sorry for the two branch on the fork, I messed up on my PC ("3343182-background-image-not" is the right one).
I don't have the error you reported on the 2.0.x-dev, the cache problem seems to be corrected. But the background didn't appeared.
After inverstigation, the page.background_image is always empty in the page.html.twig, I added an implementation of hook_preprocess_page, and now I see my background on the front.