+1
cbccharlie → created an issue.
cbccharlie → changed the visibility of the branch 3476920-nested-field-groups to active.
cbccharlie → changed the visibility of the branch 3476920-nested-field-groups to hidden.
cbccharlie → created an issue. See original summary → .
I think like @e0ipso.
fjgarlin → credited cbccharlie → .
cbccharlie → created an issue.
I created a branch from Laura's adding some changes to allow applying English recipes on portals where the default language is not English.
cbccharlie → created an issue.
+1
cbccharlie → created an issue.
Sorry for the delay in replying.
The main module "Title length" is just the API for the other 2 to work correctly. Currently the module only allows changing the length of the title field for nodes and/or taxonomies.
Do you have any further questions about this?
cbccharlie → created an issue.
Yes, I will check it out.
@jurgenhaas, sorry, I didn't know that drush.services.yml is no longer necessary.
And yes, with the DEV changes it now discovers the Drush command :).
On the other hand, I had applied a small change when executing the command, so that it shows in the console the URL that needs to be loaded in DRD to finish configuring the agent. Do you see it correctly? You can see it in the MR that I had created.
Thank you very much!
If the idea is for the recipes to allow adding new functionalities to a portal and considering that Drupal is a multilingual system, I personally think it is most sensible for the recipes to take translations into account. Otherwise, in multilingual portals, you will be adding incomplete functionalities, requiring manual configurations.
Yes, that's correct. In the issue title I indicated 11, but I was referring to 11+, that is, 11 and 12.
I'm reassigning the issue to myself, because I have it fixed and I'm going to create the MR soon.
cbccharlie → created an issue.
Perfect, thank you very much!
cbccharlie → created an issue.
Hola!
@jbellido era una idea sin más, que podía plantearse a modo charla de alguien o a modo conversación, pero ya se ha ofrecido @ygoex :) a preparar una charla, así que genial!
En todo caso, al margen de lo que prepare @ygoex, se podrían reservar unos minutos al final de su charla para contrastar formas de trabajar de los diferentes asistentes (los que quieran participar) y discutir temas como los que indicaba en la propuesta.
cbccharlie → created an issue.
+1
Although the issue is from version 8.x, I also upload a patch for version 7.x-2.x.
Yes, this module is very small.
@apaderno, I am also the maintainer of the Drupal 10 version of the module
https://www.drupal.org/project/title_length →
.
Thank you!
+1 to what @anybody comments, I think it would be a good idea.
Hi,
While the new VUE-based JS library is not available, we have implemented a small JS script that renders any HTML that is embedded in the banner. It is a completely provisional solution, but it can help those of us who have this need get through it. I'm only contributing it in case someone finds it useful, but it's still minimally tested.
(function (Drupal, once) {
'use strict';
Drupal.behaviors.myCustomCookies = {
attach(context, settings) {
once('myCustomCookies', 'body', context).forEach(function (element) {
const observer = new MutationObserver((mutations, obs) => {
const cookiesBannerText = document.getElementsByClassName('cookiesjsr-banner--text');
if (cookiesBannerText[0]) {
const parser = new DOMParser();
const textarea = document.createElement('textarea');
textarea.innerHTML = cookiesBannerText[0].innerHTML;
const cookiesBannerHTML = parser.parseFromString(textarea.value, 'text/html');
cookiesBannerText[0].innerHTML = cookiesBannerHTML.firstChild.innerHTML;
obs.disconnect();
}
});
observer.observe(document.body, { attributes: true, childList: true, subtree: true });
});
},
};
}(Drupal, once));
In addition to this, it would be necessary to define the library and load it with the component.
Thanks!
Thank you for the quick correction and sorry for the problems caused. I forgot about the third party integrations. :(
Thanks @anybody, rebase done. Change to "needs review" for whoever can review it.
cbccharlie → changed the visibility of the branch 3422880-convert-cookiesknockoutservice-in-service to hidden.
In case this helps someone with the same need, here's what we have done:
In our case, we wanted the block to always be placed, both in the public and private parts, without having to do it through Drupal block management. To achieve this, we have:
- Loaded it into our module using the hook_page_top and always at the beginning for accessibility.
- By doing this, we didn't get the cookie blocked message in each component due to the logic of the CookiesKnockOutService class, which checks if the block is placed. Since we always want it to be placed, we need to alter this logic. To do this, we have converted that class to a service in a merge request (MR) from another issue on Drupal.org ( https://www.drupal.org/project/cookies/issues/3422880 ✨ Convert CookiesKnockOutService in service Needs review ), and in our module, using a ServiceProvider, we alter the service so that the doKnockOut method always returns true.
$cookies_ui_block = Drupal::service('plugin.manager.block')->createInstance('cookies_ui_block');
if ($cookies_ui_block instanceof BlockPluginInterface) {
$block['cookies_ui_block'] = $cookies_ui_block->build();
$page_top = $block + $page_top;
}
cbccharlie → created an issue.
Hi,
We have also been receiving a lot of spam for a few days now using recaptcha v2 and honeypot.
There must be some problem, whether in the module or another issue.
Thanks!
+1
jlbellido → credited cbccharlie → .
Hi @kopeboy. This module was designed to be used in custom developments using render arrays. You have examples in the module readme.
cbccharlie → created an issue.
cbccharlie → made their first commit to this issue’s fork.
Hello Viktor,
I cannot make you a co-maintainer because I am not the owner of the module. In any case, I have solved the issue that I had opened and published a stable version for Drupal 10.
If you want to contribute to the module, even if you are not a co-maintainer, you can create issues with their corresponding MR (this way the corresponding attribution will be automatically generated) and I will be in charge of reviewing it and generating new versions.
Thank you so much.
All the best.
Thanks @qzmenko. I just integrated your changes and generated a stable version 2.0.0.
Hi @saesa, this seems duplicate of 📌 deprecation dynamic property Fixed . Could you please review it. Thanks!
Although the issue is from version 8.x, I also upload a patch for version 2.0.2.
Hi,
Current patches are not working with entities without translations (langcode column missing).
Column not found: 1054 Unknown column 'ENTITY.langcode' in 'on clause'.
Hello,
Although the problem exists in the CORE, I think it is also important to provide a solution from the module for whoever is using it.
I have created a fork to correct this problem on the development branch and I also upload 2 patches, one for whoever is using version 1.2 and another for whoever is using version 1.3.
Thank you!
Greetings.
cbccharlie → made their first commit to this issue’s fork.
Hello,
The current patch causes the title to be displayed even though the view has no results.
Wouldn't it be enough to return the cache tags when the view has no results instead of rendering it anyway?
I upload a new patch doing it this way.
Thanks!