[SOLVED] Change Dimension Label

Hey,
I am trying to change the labels of the language dimensions, but they don’t change.

I tried to clear the cache, what do I miss?

Hi @BoxerBuffa ,

can you maybe give more insights, what you already tried?

Yes sure!

I have this config of dimensions:

And I changed the Label of them, (from long to shortnames) but in the backend the long names are still there, also in the dimension menu.

Neos:
  Flow:
    i18n:
      defaultLocale: en
  ContentRepository:
    contentDimensions:
      language:
        label: Languages
        icon: icon-language
        default: en
        defaultPreset: en
        presets:
          de:
            label: DE
            values:
              - de
            uriSegment: "de"
          fr:
            label: FR
            values:
              - fr
            uriSegment: "fr"
          fi:
            label: FI
            values:
              - fi
            uriSegment: "fi"
          sw:
           label: SW
           values:
             - sw
           uriSegment: 'sw'
          pl:
            label: PL
            values:
              - pl
            uriSegment: "fi"
          gr:
            label: GR
            values:
              - gr
            uriSegment: "gr"
          en:
           label: EN
           values:
             - en
           uriSegment: 'en'

This looks good to me. Have you tried to flush the cache?

Yes I did, in dev and on server in production mode, but it didn`t helped.

Is any other configuration overriding this configuration?

1 Like

Okay, there were a forgotten settings file in another site package. I still have to get used to the fact that all settings files are global.

2 Likes