With views is it possible to create multiple sections of same content type on the same page? I want to have them assigned with section URLs like "#SECTION1" , "#SECTION2" etc. So on the same page when I click on a link mysite.com/#SECTION1 it should gothe section correctly.Isthere a way to get these sections created using Drupal view?
Normally, you can addConstraint('UniqueField') to ensure that the title field of a node is unique.
However, in my use case, the title field is hidden in the form display (so it is empty), and instead, I create the title field by joining two other fields (using hook_node_presave()). Then, setting the 'UniqueField' constraint for the title field has no effect.
Is there a way to add column-level filters as highlighted in the image? The filters should be added to each column after the view results are rendered based on exposed filters. Is there a way to achieve this?
Is there a security risk in creating users (pragmatically) with a null password?
We tested sign in with no password and it doesnt allow leaving password empty. We tested basic auth with JSON:API and the user doesnt get authenticated (403 is returned). What else could be at risk?
Hallo I am trying to check for a field content of a term to trigger a selection criteria in Page Manager but got stuck at retrieving the term from the context. Any hint?