Account created on 28 January 2014, over 10 years ago
#

Merge Requests

Recent comments

πŸ‡«πŸ‡·France Soubi

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.

πŸ‡«πŸ‡·France Soubi

There was an error in the tests/src/Kernel/Plugin/migrate/BeanDeriverTestBase.php file.

πŸ‡«πŸ‡·France Soubi

Soubi β†’ made their first commit to this issue’s fork.

πŸ‡«πŸ‡·France Soubi

There is also some entityQuery in the content_browser.install file.

πŸ‡«πŸ‡·France Soubi

The patch works fine on Drupal 9.5.9 with CKEditor 5 :)

πŸ‡«πŸ‡·France Soubi

The patch can't be applied to the current version of the module :(

πŸ‡«πŸ‡·France Soubi

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.

πŸ‡«πŸ‡·France Soubi

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.

πŸ‡«πŸ‡·France Soubi

Soubi β†’ made their first commit to this issue’s fork.

Production build 0.69.0 2024