Replies: 1 comment 1 reply
-
You can have several readonly fields (and even hide them from the admin view) if you want. Synchronization can be done with FieldHooks. The Hook can be used to update all the readonly fields whenever the "primary" pageTitle changes. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There are fields that act multiple roles on a page. For example, let's say we have a field
pageTitle
, it can be:og:title
Now, we can have only 1 field
pageTitle
in the admin editor, and leave usage implementation of the field to the front end. For example:Now, what about we have different fields instead? This may better show the intention of the data presented in the response.
With that said, is there a native way to sync the values of different fields in the editor, something that resembles
admin.usedAsTitle
? Manually typing the value to different fields in the editor is certainly not desirable.Beta Was this translation helpful? Give feedback.
All reactions