POST Deployment v1.17.0
Update News addon
MANDATORY
Proper configuration of the News add-on is necessary to avoid errors when setting the summary.
To do this,
Update Creation form
- Access to Syntphony Settings (previously called TOGO Settings).
- Access the This Tenant menu.
- Access the Addons section.
- Open the News addon.
- Go to Forms section.
- Go to Creation form.
- On the Design tab, locate the field summary and replace it with the following code:
{
"name": "summary",
"type": "TextArea",
"label": {
"t": "forms.summary"
},
"description": {
"t": "forms.summaryDescription"
},
"validation": {
"expression": "^.{0,255}$",
"expressionErrorMessage": {
"en-US": "Character limit exceeded",
"es-ES": "Limite de caracteres superado"
}
}
}- Save as Draft.
Update Edition form
- Go to Forms section.
- Go to Edition form.
- On the Design tab, locate the field summary and replace it with the following code:
{
"name": "summary",
"type": "TextArea",
"label": {
"t": "forms.summary"
},
"description": {
"t": "forms.summaryDescription"
},
"value": "{base.description}",
"validation": {
"expression": "^.{0,255}$",
"expressionErrorMessage": {
"en-US": "Character limit exceeded",
"es-ES": "Limite de caracteres superado"
}
}
}- Publish the addon.
NOTE: DO THE SAME FOR ALL ADD-ONS THAT INHERIT FROM THE TOGONEWS OR SITEPAGE CONTENT TYPE.
Last updated on