Add <none> placeholder to clear / unset inherited value

Created on 29 March 2022, about 3 years ago
Updated 4 November 2024, 5 months ago

Problem/Motivation

Metatags uses inheritance to, for example, set global defaults > node defaults > node type values.
This is very flexible, helpful and also allows overriding inherited values with other strings or tokens.

But one thing you currently can't do (or it's not well documented in the UI) is to override an inherited value with NULL. This is for example a problem if "canonical" is set to [current-page:url:absolute] which means also on NOT FOUND (403) pages the canonical is being output, which is incorrect (at least SEO crawlers complain).
This concrete issue was also pointed out here: #3247275: Remove canonical for 404 and 403 pages β†’

But also in other cases, you may want to REMOVE / UNSET an inherited value.

Steps to reproduce

See above.

Proposed resolution

Define a fixed (or configurable with default) value which is a placeholder for UNSET.

My suggestion would be to use <none> as Drupal uses this in other places. If it's important for anyone that the string "" can be a metatag value (and it's a rare case), we could make that value also editable. But I think it can be a constant.
Another alternative would be to use a checkbox, but that would bloat configuration and would also be less intuitive.

If a metatag has a <none> value, unset it when handling the metatag and do not output the metatag.

Document the behavior in the general description or metatag field description.

A further combined improvement would be to show the inherited value in the inherited metatags, see ✨ Inherit parent metatags as placeholder in override forms Active . And / or only show the <none> documentation below in these cases.
Of course should always be allowed, even if there is no inherited value and in such case also behave like the field was left empty.

Remaining tasks

  1. Discuss
  2. Create MR with implementation & documentation
  3. Review & Test
  4. Release

User interface changes

API changes

Data model changes

✨ Feature request
Status

Closed: duplicate

Version

1.0

Component

Code

Created by

πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    @damienmckenna just came back here for the same needs. The question is, do you think it will be realistic to implement the full featured override solution within the next decade? :D (Not asking you do do so or something like that, this is really meant to read with a smile).

    My thought is the following:
    I think needing to clear a predefined default in an override is clearly an edge-case.
    It already works for any kind of string, it's just not possible to unset a value at higher level, because clearing the value would bring back the defaults. And entering a space would (hopefully) just set a space for the metatag value.

    So if we'd allow a special string like
    <unset>
    <empty>
    <none>
    for technical users, we could quite simply extend the overriding to this remaining case.
    And we could still convert that into checkboxes one day, if anyone solves it.

    If you should change your opinion on this, our team would be happy to implement that, as we're running into this again and again.

    Implementing the full-featured checkbox solution is great, but a big bunch of work and risky to never getting done.
    This might be just "good enough" and fit things like Drupals magic "code> placehoder.

  • πŸ‡ΊπŸ‡ΈUnited States DamienMcKenna NH, USA

    Reopening this as a simpler solution that won't involve greatly expanding the DOM structure and JS logic on edit forms.

  • πŸ‡ΊπŸ‡ΈUnited States DamienMcKenna NH, USA

    So something like this might work, maybe?

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    Hi Damien, thanks, I'll take a look asap, bookmarked this!

  • Status changed to Needs review 3 months ago
  • First commit to issue fork.
  • Pipeline finished with Success
    3 months ago
    Total: 354s
    #396905
  • Pipeline finished with Success
    3 months ago
    Total: 402s
    #396906
  • Pipeline finished with Success
    3 months ago
    Total: 295s
    #396916
  • πŸ‡©πŸ‡ͺGermany Grevil

    Works great! Thanks for the fix @damien!

    I basically copied the example by @anybody, and it works like a charm! The canonical url will get removed on 403 pages if we declare it as .

    I'll add a test for this.

  • Pipeline finished with Canceled
    3 months ago
    Total: 235s
    #397538
  • Pipeline finished with Failed
    3 months ago
    Total: 277s
    #397542
  • πŸ‡©πŸ‡ͺGermany Grevil

    To be honest, I don't quite get this request and how the inheritance works for metatags?

    Based on the request, it sounds like, if we would set the metatag value of a child metatag to an empty string (e.g. setting the 403 canonical_url to ""), the metatag would use the parents value (global's canonical url). But this isn't the case.

    Setting an empty string instead of already does the exact same thing. This is also represented in code and the currently failing tests.

        // If there is no value, just return either an empty array or empty string.
        if (is_null($this->value) || $this->value == '') {
          return [];
        }
    
        // Support the "<none>" option to hide all output for this meta tag.
        if (!is_array($this->value) && $this->value == '<none>') {
          return [];
        }
    

    And how does the whole inheritance work then?

    403

    Inherits meta tags from: Global

    I don't think it does.

  • πŸ‡©πŸ‡ͺGermany Grevil

    If we allowed to set an empty string, inherit the value from the parent and delete the metatag, @thomas.frobieter, and I suggest having the following changes:

    • Add the ability to provide <none> as value, to kill the metatag entirely.
    • Add the ability to provide <empty> as value, to let the metatag have an empty string.
    • Add the ability to provide to leave the input empty to use the parent value (inherited).

    Note, that the inherit / empty string functionality could also be implemented via checkbox.

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    Thanks, I'll check that!

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    @Grevil: Like just tested together I can not confirm this. Having an empty value leads to inheritance (as expected)!

  • Pipeline finished with Success
    3 months ago
    Total: 272s
    #397851
  • πŸ‡©πŸ‡ͺGermany Grevil

    All done, please review.

    Yea, this whole endeavour was caused, because programmatically setting a metatag value to an empty string will kill the metatag output entirely, resulting in the same behaviour as providing <none> (which is the root cause of my confusion).

    Only if we set an empty string via UI, the submit call will silently override our empty string with its parent value. That is also, why the tests failed originally. This is REALLY confusing! ESPECIALLY if there is also an empy / isNull check on the ouput handler and no way to tell, that $this->value will silently get overriden on submit...

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    Super nice @grevil thank you! Works fine and as expected now. Please open a follow-up to reduce the confusion you described.

    Next step (UX-wise) should be ✨ Inherit parent metatags as placeholder in override forms Active

  • πŸ‡©πŸ‡ͺGermany Grevil

    Created the follow-up issue here: πŸ“Œ Set metatag parent programmatically (inherited value) Active .

  • Pipeline finished with Success
    3 months ago
    Total: 1782s
    #397881
  • πŸ‡ΊπŸ‡ΈUnited States DamienMcKenna NH, USA
  • πŸ‡«πŸ‡·France tostinni

    What about values coming from <select> ?
    We have some in the Twitter card, but mostly in Schema.org Metatag module that use a lot of them.
    Is there a way to automatically add <none> to the <select> or this is due to this module ?

Production build 0.71.5 2024