Skip to Content
Releases1.17.0POST Deployment

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

  1. Access to Syntphony Settings (previously called TOGO Settings).
  2. Access the This Tenant menu.
  3. Access the Addons section.
  4. Open the News addon.
  5. Go to Forms section.
  6. Go to Creation form.
  7. 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" } } }
  1. Save as Draft.

Update Edition form

  1. Go to Forms section.
  2. Go to Edition form.
  3. 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" } } }
  1. Publish the addon.

NOTE: DO THE SAME FOR ALL ADD-ONS THAT INHERIT FROM THE TOGONEWS OR SITEPAGE CONTENT TYPE.

Last updated on