- Issue created by @bhogue
- π¨πSwitzerland DanieleN
danielen β changed the visibility of the branch 3473386-pattern-not-being to hidden.
- π¨πSwitzerland DanieleN
I have a similar problem.
I've imported content via cron and the pattern is not respected. After manually saving the imported content, the pattern works.
I don't have this problem when I create a new node manually. - π©πͺGermany Publishing Future Ammerbuch
Same problem here. But when I open the node to edit and save again, the node title is generated properly.
As a workaround I now changed the settings to "Create label before first save". - πΊπΈUnited States justcaldwell Austin, Texas
We're seeing the same issue. Our pattern uses a single token that points to a text field on the same entity. That field allows some minimal formatting, but the generated labels are as described above (e.g.
%AutoEntityLabel: 7a075eef-dde7-4c04-8f99-8f6a3f6e6177%
) whether or not the field values contains formatting.Re-saving the node corrects the generated label. Switching to the new 'Create label before first save' setting also works in our case.
- πΊπΈUnited States justcaldwell Austin, Texas
No time to debug right now, but my assumption is this stems from changes in π Set Label runs two times on node creation Needs work .
- π¬π§United Kingdom mistergroove
Have the same issue. I'm using this in conjunction with 'Token OR' pattern and a node reference field 'Authors' set to 'Create referenced entities if they don't already exist'.
So if someone inputs a profile node in 'Authors' that doesn't exist, the entity is created, and for the title it first it looks if the name field is populated, if not it uses the auto generated title from 'Create referenced entities' and if neither of those work then it fills it with 'Unnamed profile' as a fallback.
If someone creates a profile node manually it takes the title from 'field_profile_name' which is a mandatory field.
My token for auto_entity label is:
[node:field_profile_name|node:title|"Unnamed profile"]
Not sure how to configure this to get it to work - had to roll back to 8.x-3.2.
- π¦πΉAustria mvonfrie
I have the same problem and tried to debug this. In
function auto_entitylabel_entity_insert()
the$decorated_entity->autoLabelNeeded()
part always returnsfalse
, thus the placeholder generated during pre-save never gets replaced with the correct token-based value with the configuration "Automatically generate the label if the label field is left empty" and "Create label after first save":public function autoLabelNeeded() { $not_applied = empty($this->autoLabelApplied); // --> true $required = $this->hasAutoLabel(); // --> false $optional = $this->hasOptionalAutoLabel() // --> false && empty($this->entity->label()); // --> false return $not_applied && ($required || $optional); // true && (false || false) --> false }
This still exists in 3.4 and as it can break production sites chaning priority to Major (but not critical because in my case there's a workaround by changing new content behavior to "Create label before first save" works).
- π¦πΉAustria mvonfrie
Marking as regression as it breaks existing behavoir.